forked from raimohanska/worzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.14 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
<html>
<head>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/underscore.js"></script>
<script type="text/javascript" src="lib/Bacon.js"></script>
<script type="text/javascript" src="lib/raphael.js"></script>
<script type="text/javascript" src="vector.js"></script>
<script type="text/javascript" src="worzone.js"></script>
<style type="text/css">
body { font-family : Courier; background: #000; color: #0f0; }
li { list-style:none;}
ul { padding:0;}
#sidebar { position:absolute; left:520px; top:20px; padding : 10px;}
#links { margin-top : 15px;}
</style>
</head>
<body>
<div id="sidebar">
<div id="instructions">
<p>Left: a,s,d,w,f</p>
<p>Right: arrow keys, -</p>
</div>
<div id="controls">
<label for="sound">sound</label>
<input type="checkbox" value="sound" id="sound"/>
</div>
<div id="links">
<ul>
<li><a href="http://github.com/raimohanska/worzone">FORK ME @ GITHUB</a></li>
<li><a href="http://nullzzz.blogspot.com/">NULLZZZ BLOG</a></li>
</ul>
</div>
</div>
</body>
</html>