forked from cmlaverdiere/Four-to-the-Fifth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
29 lines (24 loc) · 945 Bytes
/
game.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Welcome: FttF</title>
<script src='http://cdn.html5quintus.com/v0.2.0/quintus-all.min.js'></script>
<!--<script src='js/quintus.js'></script>-->
<script src='js/game.js' defer></script>
<script src='js/components.js' defer></script>
<script src='js/entities.js' defer></script>
<script src='js/levels.js' defer></script>
<script src='js/scenes.js' defer></script>
<script src='js/ui.js' defer></script>
</head>
<body style="background: #222; color: #fff">
<div id="loading" style="margin:20px; background: #333; padding: 10px; border: 1px solid white;">
<h1 id="loading_status">Now Loading... 0</h1>
<div id="loading_info">
<p>This might take a minute... relax.</p>
<p>Read our <a href="./about.html">About</a> page for the game's backstory and more.</p>
</div>
</div>
</body>
</html>