-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 816 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Snake Bite Game</title>
</head>
<body>
<div class="game-box">
<h1>Snake Bite Game</h1>
<div class="scoreDisplay"></div>
<div class="grid-container"></div>
<div class="direction-btn">
<button class="top">top</button>
<button class="left">left</button>
<!-- <button class="playAgain">Okay</button> -->
<button class="right">right</button>
<button class="bottom">bottom</button>
</div>
</div>
<div class="popup">
<button class="playAgain">Play Again</button>
</div>
<script src="script/feature.js"></script>
</body>
</html>