-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 994 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="phaser.min.js" defer></script>
<script type="text/javascript" src="Scene1.js" defer></script>
<script type="text/javascript" src="Scene2.js" defer></script>
<script type="text/javascript" src="MapScene.js" defer></script>
<script type="text/javascript" src="level1.js" defer></script>
<script type="text/javascript" src="level2.js" defer></script>
<script type="text/javascript" src="game.js" defer></script>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #200E3A;
}
canvas {
image-rendering: pixelated;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
</body>
</html>