-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="sofresh.css">
<title>Go Snek Go! 🐍</title>
</head>
<body>
<div class="container content">
<p>Arrows to move</p>
<p>P to pause</p>
<p>R to toggle AI</p>
</div>
<div class="container" id="game">
<canvas width="800" height="500" id="snek"></canvas>
</div>
<div class="container">
<h1 id="score">0</h1>
<p class="score-babysitter"></p>
</div>
<div class="container content">
<p>Average: <span class="stat" id="average"></span></p>
<p>Best: <span class="stat" id="best"></span></p>
</div>
<script src="snek.js"></script>
<script src="board.js"></script>
<script src="input.js"></script>
<script src="physics.js"></script>
<script src="render.js"></script>
<script src="app.js"></script>
</body>
</html>