-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 927 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/jquery.touchSwipe-1.2.4.js"></script>
<script type="text/javascript" src="Point.js"></script>
<script type="text/javascript" src="Apple.js"></script>
<script type="text/javascript" src="Snake.js"></script>
<script type="text/javascript" src="Ground.js"></script>
<script type="text/javascript" src="Game.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div class="center">
<canvas id="canvas"></canvas>
<div id="gamebar">
<span>Score:</span> <span id="points">0</span>
</div>
</div>
</body>
</html>