forked from mariasmoUN/Juego-del-Ahorcado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (47 loc) · 2.11 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
<!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="./stylesheet/reset.css">
<link rel="stylesheet" href="./stylesheet/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=Didact+Gothic&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=PT+Sans&display=swap" rel="stylesheet">
<title>Juego del Ahorcado</title>
</head>
<body>
<header>
<h1 class="titulo">Juego del Ahorcado</h1>
</header>
<main>
<div class="cuadro">
<div class="inicial"></div>
<a href="./juego.html">
<button class="b-iniciar-juego">Iniciar Juego</button>
</a>
<a href="./palabras.html" class="link-palabras">
<button class="b-agregar-palabra">Agregar nueva palabra</button>
</a>
</div>
<!-- <a href="./juego.html">
<button class="b-iniciar-juego">Iniciar Juego</button>
</a> -->
</main>
<footer>
<div class="contenedor-footer">
<P>© 2022 | Made with</P>
<img src="./image/icons8-me-gusta-48.png" alt="corazon" class="corazon">
<p>by</p>
<P>Mariana Arias</P>
<p>| Ilustration of<a href="https://www.andreasrocha.com/" target="_blank" class="portafolio-andreas"> Andreas Rocha</a></p>
</div>
<div class="links">
<a href="https://www.linkedin.com/in/mariana-arias-montoya-b37a311a7/" target="_blank"><img src="./image/icons8-linkedin-rodeado-de-círculo-30.png" alt="linkedIn"></a>
<a href="https://github.com/mariasmoUN" target="_blank"><img src="./image/icons8-github-30.png" alt="GitHub"></a>
</div>
</footer>
</body>
</html>