-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (101 loc) · 2.78 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<!-- HEAD DE LA PAGINA -->
<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" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Short+Stack&display=swap"
rel="stylesheet"
/>
<!-- HEAD DE LA PAGINA -->
<title>Juguemos con ORACLE</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<!-- BODY DE LA PAGINA -->
<body>
<!-- TITULO -->
<div>
<h1 class="titulo">
Juguemos a<br />adivinar la palabra secreta<br />con Oracle
</h1>
<button
class="btn"
id="iniciar-juego"
onclick="location.href='#section-juego';"
>
Iniciar Juego
</button>
</div>
<div>
<input
maxlength="8"
class="text-input"
type="text"
id="input-nueva-palabra"
placeholder="Escriba una nueva palabra"
/>
<button class="btn" id="nueva-palabra" onclick="agregarPalabra();">
Agregar Palabra
</button>
</div>
<!-- SECCION IZQUIERDA -->
<section id="section-juego">
<form
id="formulario"
action=""
onClick="evitarRecarga(event)"
autocomplete="off"
>
<input
maxlength="1"
class="text-input"
type="text"
name="input-texto"
id="input-texto"
placeholder="Escriba una letra"
onKeyUp="compararLetra();"
/>
<label>*solo mayusculas</label>
<br />
<input
class="btn"
type="submit"
value="Jugar de nuevo"
id="btn"
onClick="jugardeNuevo();"
/>
<!-- CANVAS -->
<div id="canvas">
<canvas width="500" height="350"></canvas>
</div>
<!--Dashboard-->
<h2 value="">Palabra Secreta:</h2>
<h2 id="palabraSecreta" value=""></h2>
<h2 id="restantes" value="">Intentos restantes:</h2>
<h2 id="cantdeIntentos" name="name" value=""></h2>
<h2 id="letrasElegidas" value="">Letras elegidas:</h2>
</form>
</section>
<!--RODAPIE-->
<footer>
<p>
desarrollado por Florencia Martinez<br />
<a href="mailto:florenciapaulamartinez@gmail.com">contact me</a>
</p>
</footer>
<!--JAVASCRIPT-->
<script src="script.js"></script>
<script src="canvas.js"></script>
<script>
elegirPalabra();
</script>
<script>
dibujar();
</script>
</body>
</html>