-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jogo da cobrinha</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<h1>Jogo da cobrinha!</h1>
<img src="img/yellowsnake.svg" alt="Desenho de uma cobra sorridente amarela e vermelha" id="cobra">
</header>
<div id="main">
<canvas id="snake" width="512" height="512"></canvas>
<div id="instructions">
<h2>Use</h2>
<img src="img/arrow-keys.png" alt="Setas do teclado" id="arrows"> <h2>para jogar ;-)</h2>
</div>
</div>
</body>
</html>
<!-- imagens
Background: https://freesvg.org/forest-scene
Yellow snake: https://freesvg.org/comic-snake
Arrow keys: Imagem de TariqMK por Pixabay https://pixabay.com/pt/illustrations/chave-chaves-teclas-de-seta-3860988/
-->