-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Less is more</title>
<!-- For debug only! -->
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-10955279-6']);
_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);
})();
window.addEventListener("keydown", function(e){console.log(e)}, true);
</script>
<style type="text/css" media="screen">
body{
background-color: #eee;
}
</style>
<link href="http:////netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="hero-unit">
<h1>Less is more</h1>
<p><i>The less you shoot, the more your health regenerates</i>,
<i>The less you move, the more your ammo regenerates</i>.</p>
<p>Use wasd, mouse, and left-click</p>
<p>Compatible with Chrome and Firefox (and probably Safari). IE9 no likey.</p>
<a href="game.html" class="btn btn-success btn-large btn-block">Play</a>
<p><i class="muted">I recommend hitting F11 to full-screen and the F5 to refresh page</i> To restart the game, hit F5 to reload the page</p>
</div>
</div>
</div>
</body>
</html>