-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (32 loc) · 1.44 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
<!DOCTYPE html>
<html><head>
<title>Highway to the Danger Zone</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="hd.css" rel="stylesheet">
<link href="odometer-theme-car.css" rel="stylesheet">
</head><body>
<div id="horizon" class="state pre start play dead win think"><img class="fill" id="horizonimg" src="horizon.jpg"></div>
<div id="clouds"></div>
<div id="cockpit"><img id="cockpitimg" class="fill" src="cockpit.png"></div>
<div id="hud" class="state play">
<div id="hudouter"></div>
<div id="hudinner"></div>
<div id="hudslider"><img id="hudsliderimg" class="fill" src="reticle2.png"></div>
<div id="hudtarget"><img id="hudtargetimg" class="fill" src="reticle1.png"></div>
<div id="hudpings"></div>
</div>
<img id="redx" class="state dead" src="tryagain.png">
<div id="spinners" class="state think ">
<div id="spinr" class="hourglass"></div>
<div id="spinb" class="hourglass"></div>
<div id="spinw" class="hourglass"></div>
</div>
<img id="logo" class="state pre win think" src="logo.png">
<div id="cardparent" class="state win">
<div id="card"><div id="name">GOOSE</div></div>
</div>
<div id="odometer" class="odometer state start play win think">30.0</div>
<script src="odometer.min.js"></script>
<script src="perlin.js"></script>
<script src="hd.js"></script>
</body></html>