-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathindex.html
59 lines (46 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Dash</title>
<link rel="icon" href="icon.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Press+Start+2P"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body translate="no">
<div id="game">
<div id="road">
<div id="cloud"></div>
<div id="hero"></div>
</div>
<div id="hud">
<span id="time" class="topUI">0</span>
<span id="score" class="topUI">0</span>
<span id="lap" class="topUI">0'00"000</span>
<span id="tacho">0</span>
</div>
<div id="home">
<h1>Dash</h1>
<p id="text"></p>
<div id="highscore"></div>
</div>
</div>
<div id="controls">
<span><span>C</span>insert coin</span>
<span><span>M</span>mute</span>
<span><span><</span><span>></span>move</span>
<span><span><</span><span>></span>accelerate</span>
</div>
<script src="script.js"></script>
<script id="rendered-js">
// ------------------------------------------------------------
// assets
// ------------------------------------------------------------
//# sourceURL=pen.js
</script>
<!-- <script src="javascript/null.js"></script> -->
</body>
</html>