forked from webferrol/AHORCADO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.11 KB
/
index.html
File metadata and controls
36 lines (34 loc) · 1.11 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>Variado</title>
</head>
<body>
<main class="container">
<h1 class="title">Ahorcado</h1>
<!-- Ahorcado-->
<article class="article-1">
<header class="enunciado">
<h2 class="enunciado__title">1. Juego del ahorcado</h2>
<div class="enunciado__descripcion">Usando una fila de guiones, se representa la palabra a adivinar, dando el
número de letras, números y categoría<br>Pulsa la tecla <strong>Empezar</strong> para comenzar el juego.</div>
</header>
<div class="contenido alerta">
<div id="ahorcado"></div>
<ul class="contenido">
<li class="contenido__item">
<label for="letra">Letra</label>
<input placeholder="Su letra" id="letra" type="text" maxlength="1">
<button class="boton" id="b1">Empezar</button>
</li>
</ul>
</div>
</article>
</main>
<!-- Scripts -->
<script src="js/ahorcado_class.js"></script>
<script src="js/script.js"></script>
</body>
</html>