-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 2.01 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>
<meta charset="UTF-8">
<title>Ahorcado</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="reset.css"/>
<link rel="stylesheet" href="style.css"/>
<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=Comic+Neue:ital,wght@1,700&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="imagenes/Logo.png">
</head>
<body>
<header>
<img class="logo1" src="imagenes/Logo.png" alt="logo alura"/>
</header>
<main>
<section class="tituloTexto">
<h1>Juego del Ahorcado</h1>
<h3>Reglas:</h3>
<p>El juego consiste en acertar la palabra oculta, para ello
se deben adivinar las letras que componen la misma. Por cada
letra equivocada se dibujara una parte de la horca primero y
luego el personaje. Hay hasta 8 intentos para acertar antes de
que se complete el ahorcado y pierdas. Solo tenes que ingresar
letras y adivinar. Mucha suerte!
PD: podes agregar mas palabras al listado original.
</p>
</section>
<div class="botones">
<button class="iniciar" type="button" onclick="location.href='juego.html'">Iniciar Juego</button>
<button class="agregar" type="button" onclick="location.href='palabras.html'">Agregar palabras</button>
</div>
</main>
<footer>
<h6 class="copyright"> Realizado por Nickus para el Challenge 02 del curso ONE de ALURA Latam -- © Copyright 2022</h6>
</footer>
<script src="script.js"></script>
</body>
</html>