-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.24 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.24 KB
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
33
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta name="viewport" content="width=device-width" charset="UTF-8">
<title>👻 | Jogo da Forca</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/index-style.css">
</head>
<body>
<section>
<div id="container-botoes">
<button id="adiciona-palavra" type="submit" style="display: none;">Adicionar</button>
<button id="botao-inicia" type="submit">Iniciar</button>
<button id="botao-novo-jogo" type="reset" style="display: none;">Novo jogo</button>
<button id="botao-adiciona" type="submit">Adicionar palavras</button>
<input type="text" id="nova-palavra" style="display: none;" pattern="[A-Za]+$">
</div>
<div id="container-canvas">
<canvas width="1200" height="800"></canvas>
</div>
</section>
<script src="js/inicia-jogo.js"></script>
<script src="js/palavra-secreta.js"></script>
<script src="js/desenha-forca.js"></script>
</body>
<footer>
©Sthefany Alves - Alura & Oracle/ONE
</footer>
</html>