-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
42 lines (40 loc) · 1.6 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
<!doctype html>
<html>
<head>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<title>GrrGoons</title>
<link rel="stylesheet" type="text/css" href="Assets/Styles.css">
<link rel="stylesheet" type="text/css" href="Assets/bootstrap.css">
<script src="Scripts/jquery-2.2.3.js"></script>
<script src="Scripts/bootstrap.js"></script>
<script src="Scripts/phaser.min.js"></script>
<script src="Scripts/Core.js"></script>
<script src="Scripts/Goon.js"></script>
</head>
<body onload="init();">
<div class="row">
<div class="col-md-11">
<h1>GrrGoons<small> #WorldWarBee</small></h1>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div id="gameUi"></div>
</div>
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-body">
<h1>Kill the swordfleet!</h1>
<p>Kill the CONDI swordfleet, before they run away!</p>
<p>Control your ship with arrow-keys and shoot with space.</p>
<p>Have fun! -ialocin</p>
</div>
</div>
</div>
</div>
</body>
</html>