-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
24 lines (23 loc) · 873 Bytes
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet", href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<div id="panel">
<div id="content">
<ul id="links">
<li><a href="home.html", class="current">Home</a></li>
<li><a href="pages/launchpad.html">Launchpad</a></li>
<li><a href="pages/projects.html">Projects</a></li>
<li><a href="pages/contacts.html">Social Media & Contact</a></li>
<li><a href="pages/misc.html">Other</a></li>
</ul>
</div>
</div>
</header>
</body>
</html>