-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
46 lines (46 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
42
43
44
45
46
<!DOCTYPE HTML>
<html>
<head>
<title>Drunken Viking</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
@font-face {
font-family: 'VT323';
font-style: normal;
font-weight: 400;
src: local('VT323'), local('VT323-Regular'), url(VT323-Regular.ttf) format('truetype');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
html, body {
height: 100%;
min-height: 100%;
}
body{
margin: 0;
padding: 0;
font-family: VT323, monospace;
background-color: #333054;
}
canvas {
width: 100%;
height: 100%;
}
</style>
<script src="scripts/phaser.min.js"></script>
<script src="scripts/graphics.js"></script>
<script src="scripts/player.js"></script>
<script src="scripts/scorecard.js"></script>
<script src="scripts/map.js"></script>
<script src="scripts/dialog.js"></script>
<script src="scripts/levels.js"></script>
<script src="scripts/title.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/preload.js"></script>
<script src="scripts/boot.js"></script>
</head>
<body>
<div id="gameContainer"></div>
<div id="fontLoader">Drunken Viking</div>
<script src="scripts/index.js"></script>
</body>
</html>