-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<title>Dig Rig | A Game by Unstoppable Carl</title>
<link href="css/normalize.css" media="all" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="debug.css">
<link href="css/style.css" media="all" rel="stylesheet" type="text/css">
<script type="text/javascript" src="lib/impact/impact.js"></script>
<script type="text/javascript" src="lib/game/main.js"></script>
</head>
<body>
<div class="page clearfix">
<div class="canvas-container">
<canvas id="canvas"></canvas>
</div>
<div id="level-list" class="block level-list">
<h3>Levels</h3>
<ul>
<li>
<a href="#" data-level-name="test">Test</a>
</li>
<li>
<a href="#" data-level-name="tunnel">Tunnel Test</a>
</li>
</ul>
</div>
<div class="block instructions">
<h3>Instructions</h3>
<p>
<strong>Move:</strong> WASD , Arrow Keys<br>
<strong>Jump:</strong> Space, Up, W<br>
<strong>Shoot Destroy:</strong> Click, hold to charge<br>
<strong>Shoot Create:</strong> Right Click, hold to charge<br>
</p>
</div>
<div class="clear">
<p><a href="https://github.com/unstoppablecarl/DigRig">Github</a>, <a href="https://twitter.com/unstoppableCarl">@unstoppableCarl</a></p>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/lib/jquery-1.9.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/change-level.js"></script>
</body>
</html>