-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 2.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<body onkeydown = move()>
<head>
<title>Snake!</title>
<style>
p.small {
line-height: 100%;
font-family: monospace;
white-space: pre;
margin: 0;
}
td.game {
padding: 0px 0px;
border-width: 1px;
border-collapse: collapse;
border-style: solid;
}
td.menu {
vertical-align: top;
}
</style>
</head>
<table>
<tr>
<td class = "game">
<p class ="small" id = "line0"> </p>
<p class ="small" id = "line1"> </p>
<p class ="small" id = "line2"> </p>
<p class ="small" id = "line3"> </p>
<p class ="small" id = "line4"> </p>
<p class ="small" id = "line5"> </p>
<p class ="small" id = "line6"> </p>
<p class ="small" id = "line7"> </p>
<p class ="small" id = "line8"> </p>
<p class ="small" id = "line9"> </p>
<p class ="small" id = "line10"> O </p>
<p class ="small" id = "line11"> </p>
<p class ="small" id = "line12"> </p>
<p class ="small" id = "line13"> </p>
<p class ="small" id = "line14"> </p>
<p class ="small" id = "line15"> </p>
<p class ="small" id = "line16"> </p>
<p class ="small" id = "line17"> </p>
<p class ="small" id = "line18"> </p>
<p class ="small" id = "line19"> </p>
<p class ="small" id = "line20"> </p>
</td>
<td class="menu">
<p id = "score"></p>
<p>Use WASD to move</p>
<button id = "pause" onclick = "pause()">Pause</button>
<br>
<button id = "portal" onclick = "resetPortal()">Reset without Portal</button>
</td>
</tr>
</table>
<script src="game.js"></script>
</body>
</html>