-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
24 lines (20 loc) · 1023 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
<!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">
<link rel="stylesheet" href="./styles/style.css">
<script defer src="./scripts/script.js"></script>
<title>Snake Game</title>
</head>
<body>
<h1>Snake Game!</h1>
<canvas id="snake" width="512" height="512"></canvas>
<footer>
<p>Recriando o jogo da cobrinha com JavaScript - <a target="_blank" href="https://digitalinnovation.one/" rel="noopener noreferrer">Digital Innovation One</a></p>
<p>Repositório <a target="_blank" href="https://github.com/Pleiterson/snake-game-javascript" rel="noopener noreferrer"> GitHub </a>deste projeto</p><br>
<p>Desenvolvido por <a target="_blank" href="https://pleiterson.vercel.app/" rel="noopener noreferrer">Pleiterson Amorim</a></p>
</footer>
</body>
</html>