-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.01 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>Snake Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.avif" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
</head>
<body>
<hr>
<h1>Snake Game</h1>
<hr>
<!-- <p>Press the spacebar to pause the game</p> -->
<div id="menu">
<h2>Select Game Mode</h2>
<div class="buttons-container">
<button id="classic-mode">Classic Mode</button>
<button id="space-mode">Space Mode</button>
</div>
<hr>
</div>
<div id="score-board">Current Score: 0</div>
<div class="game-container">
<div id="game-board"></div>
<div id="high-score-board">
High Score: <span id="high-score-name"></span> - <span id="high-score-value">0</span>
</div>
</div>
<script src="script.js"></script>
</body>
</html>