-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1 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
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@400;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Snake Game</h1>
<button id="start">start</button>
<button id="restart">restart</button>
<div class="dropdown">
<button class="dropbtn">gameboard</button>
<div class="dropdown-content">
<a href="#" id="grid-10">10 x 10</a>
<a href="#" id="grid-12">12 x 12</a>
<a href="#" id="grid-14">14 x 14</a>
<a href="#" id="grid-16">16 x 16</a>
<a href="#" id="grid-18">18 x 18</a>
<a href="#" id="grid-20">20 x 20</a>
</div>
</div>
<h2>Score <span id="score">0</span></h2>
<div class="grid"></div>
<script src="index.js"></script>
</body>
</html>