-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauto.html
34 lines (33 loc) · 1.12 KB
/
auto.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel = "stylesheet" type = "text/css" href = "snake.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type = "text/javascript" src = "js/start.js"></script>
<script type = "text/javascript" src = "js/snake.js"></script>
<script type = "text/javascript" src = "js/auto.js"></script>
<audio preload id = "fruitsound"><source src = "static/boop.wav" type = "audio/wav"></audio>
<title>Snake!</title>
</head>
<body>
<div id = "screen">
<div id = "container">
<div id = "games"></div>
<canvas id = "grid"></canvas>
<div id = "score">
<div class = "instructions"></div>
<div class = "description"></div>
<div class = "current-score"></div>
<div class = "high-score"></div>
<div class = "score-to-beat"></div>
</div>
</div>
<div id = "extras">
<button class = "settings">SETTINGS</button>
<button class = "unlock">UNLOCK LEVELS</button>
<button id = "auto"><a href = "https://ybenhayun.github.io/snake16/">GO BACK TO SNAKE</a></button>
</div>
</div>
</body>
</html>