-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (37 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<!--
Ignacio Heredia
-->
<meta charset="UTF-8">
<title>Snakes</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<script defer data-domain="snakes.iheredia.com" src="https://patti.iheredia.com/js/script.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery.touchswipe/1.6.15/jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</head>
<body>
<canvas></canvas>
<div id="footer">
<span id="controls">
controls
<i class="fa fa-arrow-circle-left"></i>
<i class="fa fa-arrow-circle-up"></i>
<i class="fa fa-arrow-circle-down"></i>
<i class="fa fa-arrow-circle-right"></i>
</span>
<span id="score">
<i class="fa fa-star"></i>
<span id="score-number">0</span>
</span>
<span id="game-over">
GAME OVER
</span>
</div>
</body>
</html>