-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathashteroids.dev.html
35 lines (32 loc) · 906 Bytes
/
ashteroids.dev.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Ashteroids with Ash-js (Development version)</title>
<style>
body {
margin: 20px;
font-family: "Verdana, Geneva, sans-serif";
}
#container {
width: 800px;
margin: 0px auto;
}
#game-wrapper {
position: relative;
}
</style>
</head>
<body>
<div id="container">
<!-- game writes dom elements into this wrapper -->
<div id="game-wrapper"></div>
<p>
<strong>Arrow keys</strong>: movement -
<strong>Z</strong>: fire
</p>
</div>
<!-- RequireJS -->
<script data-main="src/config" src="lib/vendor/require.min.js"></script>
</body>
</html>