-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 841 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 841 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Snake Game</title>
<meta charset="UTF-8">
<!-- http://proger.i-forge.net/The_smallest_transparent_pixel/ -->
<link rel="icon" href="data:image/gif;base64,R0lGODlhAQABAAAAACwAAAAAAQABAAA=">
<link rel="stylesheet" href="/static/style.css">
<script src="game.js" type="module"></script>
</head>
<body>
<div id="controlPanel">
<button id="start-continue" class="game-run">
Start Game
</button>
<button id="pause" class="game-run">
Pause Game
</button>
<button id="speed-up" class="speed">
Speed Up
</button>
<button id="speed-down" class="speed">
Speed Down
</button>
<div id="timer"></div>
</div>
<div id="game-board"></div>
</body>
</html>