-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (66 loc) · 1.34 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Generative Computer Graphics</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');
* {
font-family: 'Roboto Mono',
monospace;
}
body {
background: #0a0e0e;
max-width: 1200px;
padding: 40px;
}
ul {
list-style: none;
}
h1,
h2,
h3,
h4,
p {
color: #00f3ff;
}
a {
color: #00f3ff;
}
canvas {
display: block;
}
</style>
</head>
<body>
<h1>
Generative Computer Graphics
</h1>
<ul>
<li>
<a href="dayOne/">Day One</a>
</li>
<li>
<a href="dayTwo/">Day Two</a>
</li>
<li>
<a href="dayThree/">Day Three</a>
</li>
<li>
<a href="dayFour/">Day Four</a>
</li>
<li>
<a href="dayFive/">Day Five</a>
</li>
<li>
<a href="daySix/">Day Six</a>
</li>
<li>
<a href="daySeven/">Day Seven</a>
</li>
<li>
<a href="dayEight/">Day Eight</a>
</li>
</ul>
</body>
</html>