-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
41 lines (40 loc) · 1.35 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Chacket Valleyparker: DRILL BUNNY</title>
<meta name="description" content="A game by Dream Show Adventures for Ludum Dare 29."/>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Press+Start+2P">
<style type="text/css">
body {
background-color: #333;
}
#ludumdare29 {
width:320px;
height:512px;
position:absolute;
left:50%;
top:50%;
margin:-256px 0 0 -160px;
border: 2px solid white;
font-family: 'Press Start 2P';
}
/* Apparently this forces the browser to load the font */
/* This works but NOT if set to display: none */
#loadfont {
font-family: 'Press Start 2P';
color: #333;
}
</style>
</head>
<body>
<div id="ludumdare29"></div>
<div id="loadfont">I'm invisible!</div>
</body>
<script src="js/phaser.min.js"></script>
<script src="js/game.min.js"></script>
</html>