-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.03 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.03 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
<html>
<head>
<script>
if( window.location == 'http://i.am.rodel30.com/escape' ){
window.location = 'http://i.am.rodel30.com/escape/';
}
</script>
<script src="http://code.jquery.com/jquery-2.0.0.min.js"></script>
<script src="js/rooms.js"></script>
<script src="js/config.js"></script>
<script src="js/renderer.js"></script>
<script src="js/item.js"></script>
<script src="js/player.js"></script>
<script src="js/pillar.js"></script>
<script src="js/box.js"></script>
<script src="js/room.js"></script>
<script src="js/control-binding.js"></script>
<link rel='stylesheet' href='main.css' />
</head>
<body>
<h1>Escape!</h1>
<p>Use arrows to move, and the Space bar to grab on to the box in front of you.</p>
<ul id="menu">
<li id="reset" class="link">Reset</li>
<li id="nextlvl" class="link">Next Level</li>
<li id="endoflvls">You've completed all the levels that we currently have! Check back later for more.</li>
</ul>
<div id="cargo-hold"></div>
<div id="cache"></div>
</body>
</html>