-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (52 loc) · 2.21 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
68
69
70
71
72
<!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">
<link rel="stylesheet" href="reset css/reset.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css">
<title>Jogo da forca</title>
</head>
<body>
<header>
<img src="imgs/Vector (2).png" alt="logo da alura">
</header>
<main>
<div class="botoes-inicio" >
<button class="comecar" onclick="comecar()" > Começar</button>
<button class="novapalavra" onclick="telaaddpalavra()">Nova palavra</button>
</div>
<section class="forca" >
<canvas width="800" height="400" hidden > </canvas>
<script src="script.js"></script>
<div class="botoes-jogo" hidden >
<input class="teclado" id="chute" onclick="desabilitaPc()" required>
<button class="chutar"onclick="teclado()">Chutar</button>
<button class="desistir" onclick="parar()">Desistir</button>
<button class="novojogo" onclick="restart()">Novo jogo</button>
</div>
</section>
<section class="addPalavra">
<div class="botoes-add" hidden>
<textarea class="add"cols="30" rows="10" placeholder="Digite a palavra"></textarea>
<button class="desistir" onclick="salvar()"> Salvar </button>
<button class="novojogo" onclick="parar()">cancelar</button>
</div>
</section>
</main>
<footer>
<div class="pe">
<h1 > Lucas Gatica</h1>
<h1 ><a href="https://github.com/LucasGatica"> <img src="imgs/github.svg"></a></h1>
<h1><a href="https://www.linkedin.com/in/lucas-gatica-59665a189/"><img src="imgs/linkedin.svg"></a></h1>
</div>
</footer>
</body>
</html>