-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.35 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>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>
<!-- Main Content -->
<main>
<section class="hero">
<div class="container">
<h2>Focused on Innovation and Impact</h2>
<p>Advancing quantitative research through technology and collaboration.</p>
<a href="https://forms.gle/CvMU2CBmmfWvEkgM8" class="button" target="_blank" rel="noopener noreferrer">Join Now</a>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About Us</h2>
<p>DevilQuant is a research-driven organization at ASU that focuses on quantitative analysis, data science, and computational modeling.</p>
</div>
</section>
</main>
<!-- Footer will be dynamically loaded here -->
<div id="footer-container"></div>
</body>
</html>