-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1007 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>
<meta charset="UTF-8" />
<meta property="og:image" content="http://gilad905.github.io/escape-the-gabo/media/thumb.jpg" />
<meta property="og:description" content="
You are Ian, you move with the arrow keys.
Try to avoid touching the Gabos for as long as you can!
Hit F5 (refresh) to restart the game.
" />
<title>Escape the Gabo!</title>
<script src="//cdn.jsdelivr.net/phaser/2.5.0/phaser.min.js"></script>
</head>
<body>
<script src="./escape_the_gabo.js"></script>
<div id="phaser"></div>
<div style="color: #8a2be2">
<p>
ESCAPE THE GABO
</p>
<p>
You are Ian, you move with the arrow keys.
</p>
<p>
Try to avoid touching the Gabos for as long as you can!
</p>
<p>
Hit F5 (refresh) to restart the game.
</p>
</div>
</body>
</html>