-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Phaser Game</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,800" rel="stylesheet">
<script type="text/javascript" src="js/phaser.min.js"></script>
<style type="text/css">
body {
font-family: 'Raleway', sans-serif;
color: #fff;
background: #111;
margin-top: 100px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.window-wrap {
border: solid 4px #444;
}
.container {
width: 608px;
margin: auto;
}
</style>
</head>
<body>
<div class="container">
<div class="window-wrap">
<div id="game-window"></div>
</div>
</div>
<script type="text/javascript" src="build/phaser.init.js"></script>
<script type="text/javascript" src="js/menuState.js"></script>
<script type="text/javascript" src="js/hero.js"></script>
<script type="text/javascript" src="js/player.js"></script>
<script type="text/javascript" src="js/mainState.js"></script>
</body>
</html>