-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 963 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
<!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>Jogo da Cobrinha</title>
<!-- Fontes importadas -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=New+Tegomin&display=swap" rel="stylesheet">
<!-- Arquivos externos linkados -->
<link rel="stylesheet" href="css/style.css">
<script defer src="js/script.js"></script>
</head>
<body>
<div class="game">
<h1 class="titulo">Jogo da Minhoca!</h1>
<p class="subtitulo">Ajude a minhoca a comer 40 maçãs e crescer forte e saudável<span class="destaque">[ usando as setas do teclado ]</span></p>
<canvas id="snake" width="512" height="512"></canvas>
</div>
<div class="game-over"></div>
</body>
</html>