-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (35 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/main.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
</head>
<body>
<canvas id='game' width="1820" height="895"></canvas>
<div class="fixed-action-btn" style="margin-bottom: 70px; margin-right: 20px;">
<button id="start" class="btn btn-large btn-floating waves-effect">Play</button>
</div>
<script src="js/helpers.js"></script>
<script src="js/Pathing.js"></script>
<script src="js/Sprites.js"></script>
<script src="js/Map.js"></script>
<script src="js/Game.js"></script>
<script src="js/main.js"></script>
<footer>
<div>
Artwork by: <a href='https://www.kenney.nl'>Kenney Vleugels</a>
</div>
<div>
<a href="https://github.com/Jypotheren734x/TD">Github</a>
</div>
</footer>
</body>
</html>