-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleadership.html
44 lines (41 loc) · 1.63 KB
/
leadership.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leadership - DevilQuant</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="/images/DQ.png">
<script src="loadHeader.js" defer></script>
<script src="loadFooter.js" defer></script>
<script src="menuToggle.js" defer></script>
</head>
<body>
<!-- Header will be dynamically loaded here -->
<div id="header-container"></div>
<!-- Leadership Section -->
<section class="leadership">
<div class="container">
<h2>Leadership Team</h2>
<div class="team-member">
<h4>COO - Cedric</h4>
<p>Cedric is the Chief Operating Officer and is a sophomore studying computer science and mathematics.</p>
</div>
<div class="team-member">
<h4>CRO - Ryan</h4>
<p>Ryan is the Chief Research Officer and is a junior studying computer science.</p>
</div>
<div class="team-member">
<h4>CFO - Vaibhav</h4>
<p>Vaibhav is the Chief Financial Officer, he is in charge of communicating with sponsors and ASU in order to secure funding.</p>
</div>
<div class="team-member">
<h4>Advisor - Alex</h4>
<p>Alex is the faculty advisor and a professor in the School of Mathematical and Statistical Sciences.</p>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer-container"></div>
</body>
</html>