-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
27 lines (24 loc) · 1.05 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Jogo Memória - Genius</title>
<link rel="stylesheet" href="./src/styles/style.css">
</head>
<body>
<div class="main-game">
<div class="genius">
<div class="blue"></div>
<div class="yellow"></div>
<div class="red"></div>
<div class="green"></div>
</div>
</div>
<script type="text/javascript" src="./src/scripts/script.js"></script>
<footer>
<p>Projeto desenvolvido no curso "Criando seu jogo de memória estilo Genius"<br>do Bootcamp JavaScript Game Developer da <a href="https://digitalinnovation.one/" target="_blank" rel="noopener noreferrer">Digital Innovation One</a></p>
<p>Repositório <a href="https://github.com/Pleiterson/game-de-naves-dio" target="_blank" rel="noopener noreferrer">GitHub</a> desde projeto</p>
<p>Desenvolvido por <a href="https://pleiterson.vercel.app/" target="_blank" rel="noopener noreferrer">Pleiterson Amorim</a></p>
</footer>
</body>
</html>