-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.71 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.71 KB
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
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name = "viewport" content= "width=device-width, initial-scale=1,maximum-scale=1, user-scalable=no" />
<title>Princess Persis - Zombie Slayer of Persia</title>
<script type="text/javascript" src = "js/phaser.min.js"></script>
<style type ="text/css">
body {
padding: 0px;
margin: 0px;
background: black;
}
/*
@font-face {
font-family: 'pixelPirate';
src: url('Assets/creeper_pixel.ttf');
}
*/
</style>
</head>
<body>
<!-- <div style ='font-family: pixelPirate; position:absolute;left:-100px;'>.</div> -->
<div id='gameDOM'> <!--<h1 style = "color:white; text-align:center"> PRINCESS PERSIS </h1>--> </div>
<script type = "text/javascript" src = 'js/scaler.js'></script>
<script type = "text/javascript" src = 'js/states/HomeState.js'></script>
<script type ="text/javascript" src = 'js/states/GameState.js'></script>
<script type="text/javascript" src='js/main.js'></script>
<script type ="text/javascript" src='js/prefabs/Enemy.js'></script>
<script type = "text/javascript" src = 'js/prefabs/HealthPowerup.js'></script>
<script type = "text/javascript" src = 'js/prefabs/Arrow.js'></script>
<script type = 'text/javascript' src = 'js/prefabs/ArrowPickup.js'></script>
<script type = 'text/javascript' src = 'js/prefabs/CoinPickup.js'></script>
<script type = "text/javascript" src = 'js/loadLevel.js'></script>
</body>
</html>