-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.11 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.11 KB
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
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<title></title>
<script type='text/javascript' src='./js/html5shiv.js'></script>
<!--[if lt IE 9]>
<script type='text/javascript' src='./flashcanvaspro/bin/flashcanvas.js'></script>
<![endif]-->
<link rel='stylesheet' href='./css/reset.css' />
<link rel='stylesheet' href='./css/style.css' />
</head>
<body>
<section id='screen'></section>
<div id='overlay'>
<h2>Level: <span id='level-box'></span><span class='right'>P = Pause</span></h2>
<h3>Score: <span id='score-box'></span></h3>
<h1 id='status-text'>SNAKE</h1>
<menu>
<div id='difficulty-buttons'>
<button type='button' class='difficulty' id='easy-button'>EASY</button>
<button type='button' class='difficulty' id='normal-button'>NORMAL</button>
<button type='button' class='difficulty' id='hard-button'>HARD</button>
</div>
</menu>
</div>
</body>
<script type='text/javascript' src='./js/keyboard.min.js'></script>
<script type='text/javascript' src='./js/game.js'></script>
<script type='text/javascript'>
Init();
</script>
</html>