-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (40 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css">
<title>DEADRUN II</title>
</head>
<body>
<div id="main-menu-container">
<div id="main-menu">
<p>Equip yourself and descend</p>
<div id="help">
<p>Controls</p>
<ul>
<li>WASD: move</li>
<li>Mouse: look around</li>
<li>F: fullscreen</li>
<li>Mouse1: attack</li>
<li>1, 2: change weapon</li>
</ul>
</div>
<p id="loading">Loading...</p>
<button id="play-game">Play</button>
</div>
</div>
<div id="game-win-container">
<div id="game-win">
<p>You managed to escape the dungeon.</p>
<p>Congratulations!</p>
<p>Made for Ludum Dare 45 by jcmoyer</p>
</div>
</div>
<canvas id="canvas">
<p>
Your browser doesn't appear to support the canvas element. You may need
to enable Javascript or install a recent version of Chrome or Firefox.
</p>
</canvas>
<script type="text/javascript" src="dist-stage0/ld44bundle.js"></script>
</body>
</html>