-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
29 lines (27 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:title" content="Galaxy Cowboys"/>
<meta property="og:image" content="./assets/images/background.png"/>
<meta property="og:description" content="Two cowboys vs. a whole bunch of aliens. A cute top-down shooter."/>
<title>Galaxy Cowboys</title>
<!-- CSS Section -->
<link rel="stylesheet" href="./content/game.css">
</head>
<body>
<canvas id="canvas" width="640" height="480"></canvas>
<footer><a href="https://github.com/LeicaSimile/galaxy-cowboys">See the Github repo here.</a></footer>
<!-- JavaScript Section -->
<!-- CreateJS Libraries -->
<script src="./node_modules/easeljs/lib/easeljs.min.js"></script>
<script src="./node_modules/tweenjs/lib/tweenjs.min.js"></script>
<script src="./node_modules/soundjs/lib/soundjs.min.js"></script>
<script src="./node_modules/preloadjs/lib/preloadjs.min.js"></script>
<script src="./node_modules/stats.js/build/stats.min.js"></script>
<!-- Game Scripts -->
<script src="./scripts/build/game.js"></script>
</body>
</html>