-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (37 loc) · 897 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Save Mike Phaser.js Game</title>
<style>
body {
background-color: #000;
margin-top: 15px;
}
#game_div {
width: 800px;
height: 600px;
margin: 0 auto;
border-width: 2px;
border-style: solid;
border-color: #FFF;
}
p {
text-align: center;
color: #FFF;
font-size: 18px;
font-family: Helvetica, Arial, Sans-Serif;
}
</style>
<script type="text/javascript" src="phaser.min.js"></script>
<script type="text/javascript" src="phaser-arcade-physics.min.js"></script>
<script type="text/javascript" src="p2.min.js"></script>
<script type="text/javascript" src="game.js"></script>
</head>
<body>
<div id="game_div"> </div>
<div id="controls">
<p>Use the arrow keys to move your ship. Save every Mike the Frog to win.</p>
</div>
</body>
</html>