-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (27 loc) · 1023 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lazy Snake</title>
<link rel="shortcut icon" href="./image/favicon.ico">
<link rel="stylesheet" href= './public/style.css'>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,200&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:ital,wght@1,200&display=swap" rel="stylesheet">
</head>
<body>
<div class="body">
<div id="name">
<p>Lazy </p>
<p>Snake</p>
</div>
<div id="board"></div>
<div id="scoreBox">Score: 0</div>
<div id="speedBox">speed: </div>
<div id="hiscoreBox">High Score: 0</div>
</div>
</body>
<script src = 'index.js'></script>
</html>