-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.12 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!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">
<title>Snake Game</title>
<link rel="stylesheet" href="./src/css/style.css">
<link rel="shortcut icon" href="./src/img/favicon.ico"/>
<!--Material Icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<!-- Score-->
<div class="score">SCORE: <span class="score-value">00</span></div>
<!-- Menu -->
<div class="menu-screen">
<span class="game-over">Game Over</span>
<span class="final-score">Score: <span>00</span></span>
<button class="btn-play">
<span class="material-symbols-outlined">
play_circle
</span>
Jogar Novamente!
</button>
</div>
<!-- Canvas -->
<canvas width="600" height="600"></canvas>
<script src="./src/js/script.js"></script>
</body>
</html>
<!--
Autor: Daniel Oliveira
Email: [email protected]
Manaus/Amazonas/Brasil
28/07/2023
-->