-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Juego del ahorcado</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="img/favicon.png">
</head>
<body>
<div class="container">
<nav>
<a href="index.html"><img class="logo" src="icons/logo.svg" alt="logo_aula"></a>
</nav>
<div class="page-container">
<div class="main-index">
<div class="section-buttons mb-64">
<button id="iniciar-juego" class="btn btn-primary mb-24" type="button"
onclick="location.href='juego.html'">
Iniciar juego
</button>
<button id="agregar-palabra" class="btn btn-secondary" type="button"
onclick="location.href='palabras.html'">
Agregar nueva palabra
</button>
</div>
</div>
</div>
<footer>
<img src="icons/github.svg" alt="logo_github">
<a href="https://github.com/LauraMamian"> Laura Andrea Mamián Cerón </a>
<img src="icons/github.svg" alt="logo_github">
</footer>
</div>
<script src="https://cdn.lordicon.com/xdjxvujz.js"></script>
</body>
</html>