-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.html
36 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NUS CuriOSity</title>
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<img src="assets/logo-curiosity.png" alt="Lab Logo" class="logo">
<h1 class="lab-name">Research Group</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="people.html">People</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="container">
<main>
</main>
</div>
<footer>
<p>© 2024 CuriOSity Research Group. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>