mirror of
https://github.com/danbee/invaders
synced 2025-03-04 08:39:08 +00:00
29 lines
847 B
HTML
29 lines
847 B
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.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/game.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|