-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (63 loc) · 3.28 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
80
81
82
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jogo Palavra Misturada</title>
<script src="../PalavraFormada/scripting/jogo.js" defer="defer"></script>
<link rel="stylesheet" href="../PalavraFormada/aparência/estilo-BODY.css">
<link rel="stylesheet" href="../PalavraFormada/aparência/estilo-JOGO.css">
</head>
<body onload="impedirZoom()">
<div>
<h1 class="titulodojogo">JOGO PALAVRA SECRETA</h1>
</div>
<div id="FUNDODOJOGO">
<!--
<div class="PAINELDAPALAVRA">
<h3 class="titulodojogo">1</h3>
</div>
-->
<div class="quadrodapalavra">
<!--<h3 class="titulodojogo">2</h3>-->
<div class="painel-palavra">
<!--
<input id="?" type="button" value="?" onclick="Assembly( this )" >
-->
<input id="letra1" type="button" value="A" onclick="removerLetra( this.parentNode, 1 )" >
<input id="letra2" type="button" value="B" onclick="removerLetra( this.parentNode, 2 )" >
<input id="letra3" type="button" value="C" onclick="removerLetra( this.parentNode, 3 )" >
<input id="letra4" type="button" value="D" onclick="removerLetra( this.parentNode, 4 )" >
<input id="letra5" type="button" value="E" onclick="removerLetra( this.parentNode, 5 )" >
<input id="letra6" type="button" value="F" onclick="removerLetra( this.parentNode, 6 )" >
<input id="letra7" type="button" value="G" onclick="removerLetra( this.parentNode, 7 )" >
<input id="letra8" type="button" value="H" onclick="removerLetra( this.parentNode, 8 )" >
<input id="letra9" type="button" value="I" onclick="removerLetra( this.parentNode, 9 )" >
</div>
<div class="painel-resposta">
<!--<input type="search" name="sequência" id="RESULTADO">-->
<div id="RESULTADO">
<p>Resposta*</p>
</div>
</div>
<div class="painel-opcoes">
<input class="botao" type="button" value="Novo" class="botao">
<input class="botao" type="button" value="Repetir">
<input class="botao" type="button" value="Mostrar">
<input class="botao" type="button" value="Ajuda">
<div class="botao">
<input class="marcador" type="checkbox" name="Difícil" value="dificil">Difícil
<br>
</div>
</div>
</div>
<div class="cronometro" onload="montarCronometro( this )">
<h3 class="titulodojogo">3</h3>
</div>
</div>
<div class="guia">
<h1 class="titulodojogo">GUIA</h1>
</div>
</body>
</html>