-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
36 lines (35 loc) · 960 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
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=650, user-scalable=no">
<meta name="theme-color" content="#333">
<title>SnAkE</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="screen-wrapper">
<div id="s" class="screen">
<canvas id="bg"></canvas>
<canvas id="c"></canvas>
<div class="glare"></div>
</div>
</div>
<div class="controls" id="buttons">
<button data-action="up"></button>
<button data-action="down"></button>
<button data-action="left"></button>
<button data-action="right"></button>
</div>
<div class="controls mini">
<button data-action="mute"></button>
</div>
<script src="lib/jsfxr.js"></script>
<script src="js/sound.js"></script>
<script src="js/font.js"></script>
<script src="js/controls.js"></script>
<script src="js/ui.js"></script>
<script src="js/board.js"></script>
<script src="js/game.js"></script>
</body>
</html>