-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (30 loc) · 1.05 KB
/
index.html
File metadata and controls
32 lines (30 loc) · 1.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Escape</title>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="js/phaser.js"></script>
<!-- <script type="text/javascript" src="js/phaser.min.js"></script>
-->
<script type="text/javascript" src="js/boot.js"></script>
<script type="text/javascript" src="js/load.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<script type="text/javascript" src="js/ingame_menu.js"></script>
<script type="text/javascript" src="js/leaderboard.js"></script>
<script type="text/javascript" src="js/help.js"></script>
<script type="text/javascript" src="js/credit.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<style type="text/css">
html, body {
margin: 0;
background-color: #202020;
height: 100%;
width: 100%;
}
</style>
</head>
<body>
</body>
</html>