-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathheader.html
More file actions
40 lines (33 loc) · 975 Bytes
/
header.html
File metadata and controls
40 lines (33 loc) · 975 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<link href="css/hacker.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="nav-inner">
<!-- Mobile toggle -->
<input type="checkbox" id="nav-toggle">
<label for="nav-toggle" class="hamburger">
<span></span>
<span></span>
<span></span>
</label>
<!-- Right-aligned menu -->
<ul class="nav-links">
<li class="mascot">
<img src="images/binguin.svg" alt="Mascot">
</li>
<li><a href="index.html">Home</a></li>
<li><a href="people.html">People</a></li>
<li><a href="publications.html">Publications</a></li>
</ul>
</div>
</nav>
</body>
</html>