-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.03 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">
<title>Forca</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img id="logo" src="logo.png" alt="A da Alura">
</header>
<div class="container">
<h1 class="titulo">Jogo da Forca</h1>
<input class="text-input" type="text" id="input-nova-palavra" placeholder="Escreva uma nova palavra">
<button class="btn" id="iniciar-jogo">INICIAR JOGO</button>
<button class="btn" id="nova-palavra">ADICIONAR PALAVRA</button>
<ul id="lista">
</ul>
<canvas id="forca"></canvas>
</div>
<script type="text/javascript" src="variaveis.js"></script>
<script type="text/javascript" src="canvas.js"></script>
<script type="text/javascript" src="forca.js"></script>
<footer>
<h2>Desenvolvido por:</h2>
<p>Lucas Rodrigues do Nascimento</p>
</footer>
</body>
</html>