-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>🐍</title>
</head>
<body>
<p>🐍</p>
<p id="score" style="display: none;">Press any key to start!</p>
<canvas id="snakeboard" width="500" height="500" style="display: none;"></canvas>
<div id="level_select">
<p>Choose level:</p>
<button id="level0">0</button>
<button id="level1">1</button>
<button id="level2">2</button>
</div>
<p id="highscore">Highscore: 0</p>
<div id="restart_section" style="display: none;">
<button id="restart">Restart</button>
<button id="change_level">Change level</button>
</div>
<style>
body {
background-color: #323335;
margin: 0;
padding: 0;
font-family: monospace;
text-align: center;
}
p {
font-size: 50px;
color: #fff;
margin: 20px;
}
button {
background-color: #fff;
border: none;
padding: 10px 20px;
font-size: 20px;
border-radius: 5px;
cursor: pointer;
font-family: monospace;
}
</style>
</body>
<script type="module" src="./js/script.js"></script>
</html>