-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (33 loc) · 793 Bytes
/
index.html
File metadata and controls
43 lines (33 loc) · 793 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
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tom's Blog</title>
<meta name="description" content="Tom's Blog">
<meta name="author" content="Tom Gilbert">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</head>
<body>
<nav>
<div class="logo">
Tom's Blog
</div>
<ul class='nav-links'>
<li>
<a href='#'>Books</a>
</li>
<li>
<a href='#'>Extras</a>
</li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<script src='app.js'></script>
<a href="pages/books/little_history_of_philosophy.html">A Little History of Philosophy</a>
<a href="pages/yo.html">WebAssembly test</a>
</body>
</html>