-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
40 lines (38 loc) · 1.29 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
<!doctype html>
<html>
<head>
<title>Endless Void</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Nova+Mono|Russo+One|Sarpanch:400,600,700|Nova+Square|Ruda|VT323' rel='stylesheet' type='text/css'>
<link href='style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="background" class="full-screen">
<canvas id="bg-canvas" class="full-screen" width="800" height="800"></canvas>
</div>
<div id="foreground" class="full-screen">
<div class="help">
<h1>Keys</h1>
<ul>
<li>
<span>Arrows</span> Turn, accelerate and brake
</li>
<li>
<span>Z</span> Hyper speed
</li>
<li>
<span>Space</span> Shoot
</li>
<li>
<span>W</span> Change weapon
</li>
</ul>
</div>
</div>
<script src="helpers.js"></script>
<script src="objects.js"></script>
<script src="weapons.js"></script>
<script src="endlessvoid.js"></script>
</body>
</html>