forked from jakesgordon/javascript-boulderdash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (25 loc) · 899 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Javascript Boulderdash</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="boulderdash.css" media="screen, print" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="boulderdash">
<div id="header">
<img id='prev' src='images/up.png' title="previous level">
<img id='next' src='images/down.png' title="next level">
<span id="description">Boulderdash</span>
<a id="help" href="help.html">instructions</a>
</div>
<canvas id="canvas">
Sorry, this example cannot be run because your browser does not support the <canvas> element
</canvas>
<div id="keys">Use the <b>arrow</b> keys to control Rockford.</div>
</div>
<script src="stats.js"></script>
<script src="caves.js"></script>
<script src="boulderdash.js"></script>
</body>
</html>