-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
42 lines (37 loc) · 1.31 KB
/
news.html
File metadata and controls
42 lines (37 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sun Lab | News</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Navigation -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="members.html">Lab Members</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="joinus.html">Join Us</a></li>
</ul>
</nav>
<!-- Main Content -->
<div class="content">
<h1>News</h1>
<ul>
<li><strong>Septemper 16, 2024</strong>: The Sun Lab at Whitehead Institute is officially launched!</li>
<!-- <li><strong>[Date]</strong>: Lab published a new paper on [Topic].</li>
<li><strong>[Date]</strong>: [New Member] joined the lab.</li>
<li><strong>[Date]</strong>: Lab received a grant for [Project].</li> -->
</ul>
</div>
<!-- Footer -->
<footer>
<p>© 2024 Sun Lab | Whitehead Institute for Biomedical Research </p>
</footer>
</body>
</html>