-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (48 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Ahorcado</title>
</head>
<body>
<a href="https://www.aluracursos.com/" target="_blank"><img id="logo" src="images/logo-aluraespanhol.svg" alt="logo alura"></a>
<h1>Juego del ahorcado</h1>
<div class="tablero">
<div class="botones-inicio">
<button id="empezar">Empezar juego!</button>
<input type="text" id="agregar" placeholder="Ingresar nueva palabra en MAYUSCULAS y sin acentos">
<button id="nueva-palabra">Agregar nueva palabra</button>
<img id="horca" src="images/horca0.png" alt="horca image">
</div>
<div class="letras">
<h1 id="secreto"></h1>
<h3 id="final"final></h3>
<button id="reset">Otra vez!</button>
</div>
</div>
<footer>
<div class="bottom-container">
<a
class="footer-link"
href="https://ar.linkedin.com/in/emiliopino"
target="_blank"
>LinkedIn</a
>
<a
class="footer-link"
href="https://twitter.com/EmilioPino5"
target="_blank"
>Twitter</a
>
<a class="footer-link" href="https://github.com/pinoen" target="_blank"
>GitHub</a
>
<p>© Emilio Pino.</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>