-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.61 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Juego del Ahorcado</title>
<link rel="icon" href="ahorcado.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<div>
<img src="./imagenes/logo.svg" class="logo">
<h1 class="titulo">Juego del Ahorcado</h1>
</div>
</header>
<main>
<section>
<canvas width="400" height="460" id="pizarra_ahorcado" class="invisible"></canvas>
<label for="agregar_palabra"></label>
<input type="text" name="palabra_nueva" id="input_agregar_palabra" class="invisible" placeholder="Escriba la palabra para agregar...">
<p id="info">Palabras en MAYÚSCULAS y máximo 8 letras.</p>
</section>
<section class="botones">
<button id="iniciar_juego" class="boton_oscuro">Iniciar Juego</button>
<button id="agregar_palabra" class="boton_claro">Agregar Palabra</button>
<button id="guardar" class="boton_oscuro">Guardar y empezar</button>
<button id="salir" class="boton_claro">Salir</button>
</section>
</main>
<footer>
<p>© Copyright Lucas "el Luqui" Bustos - 2022</p>
</footer>
</body>
<script src="js/ahorcado.js"></script>
<script src="js/graficador.js"></script>
<script src="js/escoge_palabra.js"></script>
</html>