-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (35 loc) · 1.07 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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Defender</title>
<meta name="Author" content="Jacob Wunder"/>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<script src="lib/jquery-1.11.2.min.js"></script>
<script src="lib/underscore-min.js"></script>
<script src="lib/backbone-min.js"></script>
<script src="lib/paper-full.min.js"></script>
<script type="text/paperscript" src="js/bundle.js" canvas="mainCanvas"></script>
</head>
<body>
<div class="wrapper">
<canvas id="mainCanvas" resize></canvas>
</div>
<div class="header">
<ul>
<li>
<div id="healthContainer">
<span id="health"></span> <span id="injury"></span>
</div>
</li>
<li>
<span id="countdown"> <h1 id="countdownText"></h1></span>
</li>
<li>
<span id="score"></span>
</li>
</ul>
</div>
</body>
</html>