forked from ludoza/Prison
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.3 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.3 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
33
34
35
36
<!doctype html>
<!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html>
<!--<![endif]-->
<head>
<title>Prison</title>
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<noscript>
What!?! You want to play a HTML5 game without javascript?
The only kind of game I think I will be able to create with static html pages is those "choose your own advanture" kind of books.
Or if you actually want to see the game code look at `game/states/play.js`.
</noscript>
<img id="backdrop" src="assets/images/bs-town-design2.jpg">
<img id="clock" src="assets/preloader.gif">
<div id="loading" align="center" >
Downloading 1.4 MB, depending on your connection it might take a while...
</div>
<div id="container">
<div id="prison"></div>
</div>
<div id="about" align="center" style="display: none">
<a href="docs/index.html">About</a>
<a href="https://github.com/Morabaraba/Prison/blob/master/CREDITS.md">Credits</a>
<a href="https://github.com/Morabaraba/Prison/">Github</a>
</div>
<script src="js/phaser.js"></script>
<script src="js/game.js"></script>
</body>
</html>