-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 972 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<style>
html, body {
margin: 0;
height: 100%;
}
#canvas {
background: #fafafa;
}
</style>
</head>
<body onload="init()">
<canvas id="canvas">
Sorry! Your browser does not support the canvas element :(
</canvas>
<script src="https://code.createjs.com/createjs-2015.05.21.min.js"></script>
<script src="https://code.createjs.com/tweenjs-0.6.1.min.js"></script>
<script src="https://code.createjs.com/preloadjs-0.6.1.min.js"></script>
<script src="https://craig.global.ssl.fastly.net/js/mousetrap/mousetrap.min.js?71631"></script>
<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/grid.js"></script>
<script src="js/loading.js"></script>
<script src="js/script.js"></script>
</body>
</html>