-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (42 loc) · 1.29 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
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="lib2d.js"></script>
<script type="text/javascript" src="client.js"></script>
<style type="text/css">
body {
font-family: sans;
background: url(webbg.png);
}
canvas {
float: left;
padding-right: 1em;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-26201413-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<canvas id="canvas" width="1000px" height="500px"></canvas>
<div id="inventar"></div>
<p>Toggle shooting with the space bar.<br>
Press P to pause</p>
<p>send feedback and bug reports to [email protected]</p>
<p>fork it on <a href="https://github.com/ema-fox/hunt">github</a></p>
<div id="dbg"> </div>
</body>
</html>