-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
92 lines (81 loc) · 5.22 KB
/
About.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="BkJtGkSDAHT9exhaigFtJRcYo6mkxjk2dxZOh7o2eqg" />
<meta name ="viewport" content = "width=device-width, initial-scale=1.0">
<title>Cadeira AI</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script defer src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/js/all.min.js"></script>
</head>
<body>
<body style="background-color:black;">
<section class= "header">
<nav>
<a href="index.html"><img src="Images/Cad.png"></a>
<div class="nav-links" id="navLinks">
<i id="timesIcon" class="fa fa-times" onclick="hideMenu()"></i>
<h4>
<li><a href ="index.html">HOME</a></li>
<li><a href ="Product.html" >PRODUCT</a></li>
<li><a href ="Demo.html" class="demo">DEMO</a></li>
<li><a href ="About.html">ABOUT US</a></li>
<li><a href ="Contact.html">CONTACT US</a></li>
</h4>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<p>
</p>
</div>
</section>
<section class="TeamTitle" aria-label = "The team at Cadeira AI">
<h1>The Team</h1>
</section>
<section class="BGinfo" aria-label = "Background information about Cadeira AI">
<div class="content-container">
<div class="Teamtext">
<p>Cadeira AI was founded by a group of students from Universidad de Navarra and Universidad de Vigo, both in Spain. We are passionate about AI and programming. <a href="https://www.linkedin.com/in/dante-m-schrantz/" style = "color:#78d510" target="_blank">Dante Schrantz</a>, pursuing studies in Business Administration and Data Analytics at Universidad de Navarra, brings a valuable blend of business acumen and analytical skills. Dante has proven his expertise in R and Python while creating various projects at the Universidad de Navarra. He has published a Data Analytics project tying together how people have spent their time in the past 100 years and connecting it with depression and loneliness. Dante is also currently working on projects through Python and SQL. Dante has created webpages for different companies and personal projects. Complementing this, <a href="https://www.linkedin.com/in/carlosmezquitalobato/" style = "color:#78d510"target = "blank">Carlos Mezquita</a>, a student of Computer Science at Universidad de Vigo, contributes technical proficiency and hands-on coding expertise. This interdisciplinary collaboration fosters diverse perspectives, allowing us to approach challenges with creativity and innovation. Carlos is also currently interning at Denodo where he is putting his expertise to work. This has allowed him to become proficient in many programming languages such as Java, HTML and MySQL. The fusion of business, analytics, and engineering skills positions us strategically to develop an AI-driven reservation system. The team's shared enthusiasm for AI serves as a unifying force, driving our commitment to delivering a cutting-edge solution. As students, we embrace continuous learning, ensuring adaptability in the dynamic AI landscape. Together, we form a cohesive unit ready to navigate the complexities of AI development and contribute to the success of our innovative business.
</p>
</div>
</div>
</section>
<!---- Footer---->
<section class="footer" aria-label ="How to connect with Cadeira AI and contact information">
<h2>Connect With Us</h2>
<div class="icons">
<a href="https://www.instagram.com/cadeiraai/" target="_blank"><i class="fab fa-instagram" aria-label = "Cadeira AI Instagram"></i></a>
<a href="https://github.com/CadeiraAI" target="_blank"><i class="fab fa-github" aria-label ="Cadeira AI github"></i></a>
<a href="https://www.linkedin.com/company/cadeira-ia" target="_blank"><i class="fab fa-linkedin" aria-label="Cadeira AI Linkedin"></i></a>
</div>
<p>© Cadeira AI 2024</p>
<p>Made with <i class="fa fa-heart"></i> by Cadeira AI</p>
</section>
<!-------Javascript for toggle menu------->
<script>
var navLinks = document.getElementById("navLinks");
var timesIcon = document.getElementById("timesIcon");
function showMenu() {
navLinks.classList.add("active");
timesIcon.classList.add("active");
}
function hideMenu() {
navLinks.classList.remove("active");
timesIcon.classList.remove("active");
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CRMJVCSV0S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CRMJVCSV0S');
</script>
</body>
</html>