-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (55 loc) · 2.49 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JOGO DA FORCA</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
</header>
<nav class="nav">
<h6>JOGO DA FORCA</h6>
</nav>
<section>
<div class="modal-jogo">
<div class="modal-aviso">
<div class="titulo-modal">WINNER!! </div>
<div class="img-modal"></div>
<div class="fecha-modal">
<div class="resposta">caca</div>
<hr>
<button type="submit" class="botao" id="botao-novojogo">Novo</button>
</div>
</div>
<div class="acoes">
<div class="texto">ESCOLHA UMA PALAVRA</div>
<input type="password" method = "post" name="texto-jogo" class="palavra" id="palavra" placeholder="Escreva uma nova palavara ">
<input type="text" name="texto-jogo" class="palavra" id="dica" placeholder="Dica ">
<button type="submit" class="botao" id="botao">PLAY</button>
</div>
<div class="acoes" id="acoes">
<div class="texto"> JOGUE AGORA</div>
<button type="submit" id="botao-random">ALEATORIO</button>
</div>
<button type="submit" class="botao" id="botao-reset">RESET</button>
<div class="dica"></div>
<div class="caixa-texto">
</div>
<div class="palavras-lixo">
</div>
<div class="canvas">
<canvas width="400px" height="400px"></canvas>
</div>
</div>
</section>
<footer>
<p>© 2022 - Todos os direitos reservados, desenvolvido por Davi Pereira <a href="https://github.com/Davipereira555" target="_blank">github</a></p>
</footer>
<script src="./js/acoes.js"></script>
<script src="./js/principal.js"></script>
<script src="./js/forca.js"></script>
</body>
</html>