forked from woodenToaster/phaserSandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 1021 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title> Phaser Sandbox </title>
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Geo);
* {
margin: 0;
padding: 0;
}
.hiddenText {
font-family: Geo;
visibility: hidden;
}
</style>
<meta name="viewport" content="initial-scale=1 maximum-scale=1 user-scalable=0 minimal-ui" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="HandheldFriendly" content="true" />
<script type="text/javascript" src="phaser.min.js"></script>
<script type="text/javascript" src="js/boot.js"></script>
<script type="text/javascript" src="js/load.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/play.js"></script>
<script type="text/javascript" src="js/game.js"></script>
</head>
<body>
<div id="gameDiv"> </div>
<p class="hiddenText"> . </p>
</body>
</html>