-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 975 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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="styles/style.css">
<link rel="shortcut icon" href="img/snake.png" type="image/x-icon">
<script defer src="scripts/script.js"></script>
<title>Snake Game</title>
</head>
<body>
<header>
<div id="title">
<img src="img/snake.png" alt="snake" width="100">
<p>SNAKE GAME</p>
<img src="img/snake.png" alt="snake" width="100">
</div>
<div id="score">
<p>High Score:
<span id="hscore">0</span>
</p>
<p>Score:
<span id="cscore">0</span>
</p>
</div>
<hr>
</header>
<main>
<canvas id="snake" width="512" height="512"></canvas>
</main>
</body>
</html>