-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (52 loc) · 2.19 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
<!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>A Forca by Marino</title>
<link rel="stylesheet" href="./styles/reset.css">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<div class="grid">
<section class="sec-titulo">
<h1 class="titulo">A FORCA</h1>
<div class="pontuacao-novo">
<h2>pontuacao: <span id="qtd-pontos">000</span></h2>
<div class="botoes">
<button id="btnNewGame" class="btn">NOVO JOGO</button>
<button id="btnNewWord" class="btn" onclick="popUp()">NOVA PALAVRA</button>
</div>
</div>
</section>
<section class="sec-boneco">
<h2 id="vidas">VIDAS: <span>******</span></h2>
<canvas id="myCanvas"></canvas>
<h3 id="palavra"></h3>
</section>
<section class="sec-principal">
<section class="sec-saidatxt" id="secSaida">
</section>
<section class="sec-tentativas">
<p id="tentativas"></p>
</section>
</section>
<section id="sec-nova-palavra">
<input type="text" name="novapalavra" id="newWord" maxlength="8" placeholder="DIGITE AQUI...">
<div class="botoes-adcpala">
<button class="btn-adc verde" id="btnAdc" type="button">ADICIONAR</button>
<button class="btn-adc vermelho" type="button" onclick="popUp()">CANCELAR</button>
</div>
</section>
</div>
<section class="sec-footer">
<p>Feito por: Marino Mouzinho</p>
<div class="redes">
<a href="https://github.com/AquaMouzinho"><img src="https://img.icons8.com/ios-glyphs/30/A8BA9A/github.png" alt="Logo do GitHub" /></a>
<a href="https://www.linkedin.com/in/marino-paulino-dev/"><img src="https://img.icons8.com/ios-glyphs/30/A8BA9A/linkedin.png" alt="Logo do Linkedin" /></a>
</div>
</section>
<script src="./scripts/script.js"></script>
</body>
</html>