-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 973 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0" />
<link rel="icon" href="IMG/Horca.jpg">
<title>Ahorcado</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="titulo">
<h1>EL AHORCADO</h1>
<img src="IMG/Horca.jpg">
</div>
</header>
<main>
<div>
<a href="juego.html"><button class="btn" id="iniciar-juego">Iniciar Juego</button></a>
</div>
<div>
<a href="juegoPersonalizado.html"><button class="btn" id="iniciar-personalizada">Iniciar Partida Personalizada</button></a>
</div>
<div id="horca">
</div>
</main>
<footer class="piepagina">
<p>Autor: <a href="https://github.com/cgc1996">CristianGC</a></p>
</footer>
</body>
</html>