-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (78 loc) · 2.89 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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<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" />
<script
src="https://kit.fontawesome.com/162b81ecbe.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
<title>Inicio</title>
</head>
<body>
<header>
<a href="index.html">
<div><img src="./img/Vector.png" alt="logo" /></div>
</a>
</header>
<main>
<section class="main-index">
<button class="game alt activeB">Iniciar jogo</button>
<button class="add alt activeR">Adicionar nova palavra</button>
</section>
<section class="main-add">
<div class="taDad">
<textarea
class="nova-palavra"
type="text"
placeholder="Digite uma palavra ou frase"
></textarea>
<div>
<span
><i class="fa-solid fa-circle-exclamation"></i>Máx.
de 8 letras</span
>
</div>
</div>
<div class="btDad">
<button id="salvar" class="activeB adicionar-palavra">
Salvar
</button>
<button class="index alt activeR">Cancelar</button>
</div>
<div>
<button id="jogar" class="game alt">Jogar</button>
</div>
</section>
<section class="main-game">
<canvas width="350" height="400"></canvas>
<div class="letras valido"></div>
<div class="letras nulo"></div>
<div>
<button id="novo-jogo" class="activeB">Novo jogo</button>
<button class="index alt activeR desistir">Desistir</button>
</div>
<div id="mob" class="mobile">
<textarea></textarea>
</div>
</section>
<section class="avisos">
<div>
<h1 class="derrota">Derrota...</h1>
<h1 class="vitoria">Vitória!!</h1>
<h1 class="palavraAdd">Palavraadicionada!</h1>
</div>
</section>
</main>
<footer>
<div>Desenvolvido por: Rafael Nascimento</div>
<a href="https://github.com/Rafa-S-Nascimento"
><i class="fa-brands fa-github"></i
></a>
</footer>
<script src="canvas.js"></script>
<script src="script.js"></script>
</body>
</html>