1
0
mirror of https://github.com/danbee/invaders synced 2025-03-04 08:39:08 +00:00
invaders/index.html
2014-05-18 12:19:45 +01:00

42 lines
1.5 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<title>Invaders</title>
<!-- Favicon -->
<link href="favicon.ico" rel="shortcut icon">
<link href="stylesheets/all.css" rel="stylesheet" type="text/css" />
<script src="javascripts/lib/phaser.min.js" type="text/javascript"></script>
<script src="javascripts/lib/cookies.min.js" type="text/javascript"></script>
</head>
<body class="index">
<h1>INVADERS</h1>
<div id="game">
</div><!-- #game -->
<footer>Made by <a href="http://danbarber.me">Dan Barber</a> with <a href="http://phaser.io">Phaser</a></footer>
<script src="javascripts/preload.js" type="text/javascript"></script>
<script src="javascripts/create.js" type="text/javascript"></script>
<script src="javascripts/update.js" type="text/javascript"></script>
<script src="javascripts/game.js" type="text/javascript"></script>
<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-603600-6', 'danbarber.me');
ga('send', 'pageview');
</script>
</body>
</html>