-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 926 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake Game</title>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<div id="game-container">
<div id="top">
<h1>Snake Game</h1>
<p>Use arrow keys or buttons to control the snake.</p>
<div id="score">Score: 0</div>
<div id="controls">
<div class="control-row">
<button id="up-btn">↑</button>
</div>
<div class="control-row">
<button id="left-btn">←</button>
<button id="down-btn">↓</button>
<button id="right-btn">→</button>
</div>
</div>
</div>
</div>
<script type="module" src="src/main.js"></script>
</body>
</html>