-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
69 lines (57 loc) · 2.08 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
<!doctype html>
<html>
<head>
<script type="text/javascript">
// first, create the object that contains
// configuration variables
MTIConfig = {};
// next, add a variable that will control
// whether or not FOUT will be prevented
MTIConfig.EnableCustomFOUTHandler = true // true = prevent FOUT
</script>
<script type="text/javascript" src="http://fast.fonts.net/jsapi/3ac768d8-7a5c-4fd8-b377-f61d7f1760fa.js"></script>
<title>Annotated code</title>
<script src="space-invaders/space-invaders.js"></script>
<script src="circles-bouncing-off-lines/circles-bouncing-off-lines.js"></script>
<link type="text/css" rel="stylesheet" href="main.css" />
</head>
<body>
<div class="header">
<a href='/'>
<h1>Annotated code</h1>
<div class="strapline">short, heavily annotated JavaScript programs</div>
</a>
</div>
<audio id="shoot-sound" src="/space-invaders/shoot.mp3"></audio>
<div class="grid" style="height: 800px;">
<a href="/gitlet/index.html">
<div class="grid-element main">
<div class="gitlet-introduction">
<div>$ gitlet init</div>
<div>$ echo first > number.txt</div>
<div>$ gitlet add number.txt</div>
<div>$ gitlet commit -m "first"</div>
<div>[master 2912d7a2] first</div>
</div>
<h2>Git</h2>
</div>
</a>
<a href="/circles-bouncing-off-lines/index.html">
<div class="grid-element main">
<canvas id="circles-bouncing-off-lines" width="300" height="300"></canvas>
<h2>Circles bouncing off lines</h2>
</div>
</a>
<a href="/space-invaders/index.html">
<div class="grid-element main">
<canvas id="space-invaders" width="300" height="300"></canvas>
<h2>Space Invaders</h2>
</div>
</a>
</div>
<div class="footer">
<a href='https://github.com/maryrosecook/annotated-code'>GitHub</a>
<a href='http://maryrosecook.com'>Mary Rose Cook</a>
</div>
</body>
</html>