-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
53 lines (51 loc) · 2.01 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html>
<head>
<title>Infectors</title>
<meta charset=utf-8>
<script src="phaser.js"></script>
<script src="boot.js"></script>
<script src="load.js"></script>
<script src="menu.js"></script>
<script src="common.js"></script>
<script src="audiopool.js"></script>
<script src="storage.js"></script>
<script src="intro.js"></script>
<script src="play.js"></script>
<script src="tutorial.js"></script>
<script src="ingame_menu.js"></script>
<script src="summary.js"></script>
<script src="win.js"></script>
<script src="hud.js"></script>
<script src="game.js"></script>
<script src="text.js"></script>
<script src="hero.js"></script>
<script src="transformation.js"></script>
<script src="capsule.js"></script>
<script src="virus.js"></script>
<script src="changer.js"></script>
<link rel="stylesheet" href="style.css"/>
<link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4851218-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="container">
<div id="game"></div>
<!-- p class="instructions">Infectors is a sokoban-like game where you have to capture viruses in cryogenic capsules.</p -->
<p class="instructions">CONTROLS</p>
<p class="instructions">Move with the arrow keys, Escape for menu, R to restart, Q to quit, M to mute</p>
<br/>
<p class="instructions">Version 1.0.3 – Created by <a href="http://twitter.com/satanas82">Wil Alvarez</a></p>
<p class="instructions">
<img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" />
</p>
</div>
</body>
</html>