forked from bibhuticoder/snake.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 888 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
<!DOCTYPE html>
<html>
<head>
<title> Snake </title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body >
<div id="game">
<canvas class="cnv" id="canvasSnake" height="400" width="800"></canvas>
<canvas class="cnv" id="canvasFood" height="400" width="800"></canvas>
<canvas class="cnv" id="canvasHex" height="400" width="800"></canvas>
</div>
<script type="text/javascript" src="js/util.js"></script>
<script type="text/javascript" src="js/point.js"></script>
<script type="text/javascript" src="js/hexagon.js"></script>
<script type="text/javascript" src="js/snake.js"></script>
<script type="text/javascript" src="js/snakeai.js"></script>
<script type="text/javascript" src="js/Food.js"></script>
<script type="text/javascript" src="js/Game.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>