-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (33 loc) · 980 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 lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<title>Gift Grabber</title>
<link href='http://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
margin: 0;
width: 100%;
}
#game{
width: auto;
/*font-family: 'Press Start 2P';*/
}
#container{
margin: 0 auto;
}
#game canvas{
/*background-color: #000;*/
}
</style>
</head>
<body>
<div id="container">
<div id="game"></div>
</div>
<script type="text/javascript" src="js/phaser.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/game.js"></script>
</body>
</html>