-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.12 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<head>
<title>Year in Pixels</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/normalize.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Press+Start+2P|Inter:200' rel='stylesheet'>
<link href="main.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Year in Pixels</h1>
<p>Documenting my year in a series of colored pixels</p>
</header>
<nav>
<div id="timeline"></div>
<a href="2019">
<span>2019</span>
</a>
<a href="2020">
<span>2020</span>
</a>
<a href="2021">
<span>2021</span>
</a>
</nav>
<footer>
<a href="https://github.com/beverleyy/year-in-pixels">GitHub repository</a>
<p>
Made with ♥ by Bev Yeo <br>
© 2019-2021
</p>
</footer>
</body>
</html>