-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Aurelius Noble</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body>
<canvas id="simulationCanvas"></canvas>
<div class="content">
<header>
<!-- Make the header content clickable and link to '#home' -->
<a href="#home" class="header-link">
<div class="header-content">
<h1>Aurelius Noble</h1>
<p>Historical Data Scientist</p>
</div>
<div class="hamburger-menu">☰</div>
</a>
<nav>
<ul>
<!-- Removed 'Home' list item -->
<li><a href="#about" id="about">About</a></li>
<li class="dropdown" id="research">
Research
<ul class="dropdown-content">
<li><a href="#inprogress" id="inprogress">In Progress</a></li>
</ul>
</li>
<li><a href="#workshops" id="workshops">Workshops</a></li>
<li><a href="#contact" id="contact">Contact</a></li>
</ul>
</nav>
</header>
<main id="pageContent">
<!-- Dynamic content will be loaded here -->
</main>
<footer>
<img src="LSE_Logo.png" alt="LSE Logo" class="footer-image" />
<p>© Aurelius Noble</p>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>