-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 970 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="icons8-snake-32.png" type="image/x-icon">
<title>Snake Game</title>
</head>
<body>
<div class="score">score: <span class="score--value">00</span></div>
<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 width="600" height="600"></canvas>
<script src="js/script.js"></script>
</body>
</html>