-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (41 loc) · 1.58 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
<!DOCTYPE html>
<html lang="es">
<head>
<body>
<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>Juego del Ahorcado</title>
<link rel="stylesheet" href="./style/reset.css">
<link rel="stylesheet" href="./style/style.css" </head> <body>
<header>
<img class="logo" id="img-logo" src="img/logo.svg" alt="logo Alura" />
</header>
<main class="contenedor" style="text-align:center;">
<div class="titulos">
<!-- <h1 class="titulo">El Juego del Ahorcado</h1> -->
<h2>Descubre la palabra oculta</h2>
</div>
<section id="inicio">
<div class="columna">
<button class="btn" id="btnIniciarJuego">Jugar</button>
<button class="btn" id="btnIniciarAgregaPalabra">Agregar palabra</button>
</div>
</section>
<section id="contenedorTablero" class="invisible">
<div id="aparece-ahorcado">
<canvas id="horca" width="1200px" height="550px"></canvas>
<span id="mostrarError"></span>
</div>
<div class="botones">
<button class="btn" id="btnReiniciarJuego">Reiniciar</button>
<button class="btn" id="btnFinalizarJuego">Finalizar</button>
</div>
</section>
</main>
<footer>
<p class="footer">© Copyright 2022 Nelson Vilte</p>
</footer>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>