-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (40 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Dark Blue - Eloquent JavaScript, Chapter 15</title>
<link rel="stylesheet" type="text/css" href="DarkBlue.css">
<style>
html, body {
height: 100%;
text-align: center;
}
li {
list-style: none;
}
footer {
position: absolute;
width: 100%;
bottom: 0px;
text-align: center;
}
</style>
</head>
<body>
<br />
<h1>Notes and Code Projects from, "Eloquent JavaScript", Second Edition, by Marijn Haverbeke</h1>
<hr />
<h3>Code Projects</h3>
<ul>
<li>
<a href="chapter_15/DarkBlue.html">Chapter 15 - Project: A Platform Game</a>
</li>
<li>
<a href="chapter_16/DarkBlue.html">Chapter 16 - Drawing on Canvas</a>
</li>
<li>
<a href="chapter_19/paint.html">Chapter 19 - Project: A Paint Program</a>
</li>
</ul>
<footer>Sasha Goldenson, 2019</footer>
</body>
</html>