-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·31 lines (31 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Space invaders by manfergo25</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="user-scalable=0, initial-scale=1, minimum-scale=1, maximum-scale=1, width=device-width, minimal-ui=1">
<link rel="stylesheet" type="text/css" href="stylesheets/normalize.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
<script src='js/gamecontroller.js'></script>
<script type='text/javascript'>
$( function() { // jQuery *not* required - just be to call onload
GameController.init();
} );
</script>
<script src="js/phaser.js"></script>
<script src="js/main.js"></script>
<script src="js/boot.js"></script>
<script src="js/game.js"></script>
<script src="js/preloader.js"></script>
<script src="js/game_over.js"></script>
<script src="js/main_menu.js"></script>
</head>
<body>
<div id="phaser_game"></div>
<div id="orientation"></div>
</body>
</html>