-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 837 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 lang="en-US">
<head>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,
width=device-width, height=device-height, target-densitydpi=device-dpi" />
<meta charset="utf-8" />
<link rel="stylesheet" href="./assets/css/styles.css" />
<script src="./assets/js/jquery.min.js"></script>
<title>Ant World</title>
</head>
<body>
<div class="container">
<div class="canvas_wrapper">
<canvas id="canvas" height="1370" width="721" >
Your Browser doesn't support HTML5
</canvas>
</div>
</div>
<script src="./assets/js/math.js"></script>
<script src="./assets/js/controls.js"></script>
<script src="./assets/js/resize.js"></script>
<script src="./assets/js/map.js"></script>
<script src="./assets/js/game.js"></script>
</body>
</html>