-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.html
27 lines (27 loc) · 1.38 KB
/
menu.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Juego del Ahorcado</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/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=Inter:wght@300&family=Montserrat:wght@300&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0 ,maximum-scale=1.0, minimum-scale=1.0">
</head>
<body>
<div class="contenedor">
<header class="encabezado">
<img id="logo" src="imagenes/Logo.png" alt="Logo Alura">
</header>
<section class="botones">
<button id="nueva-partida" onclick="location.href='jugar.html'"><label class="texto-partida">Nueva Partida</label></button>
<button id="nueva-palabra" onclick="location.href='agregar-palabra.html'"><label class="texto-palabra">Agregar nueva palabra</label></button>
</section>
<footer>
<p class="pie-pagina"><a href="https://www.linkedin.com/in/mat%C3%ADasgarroalou/">© Matías Garro Alou - Desafío 1 Alura</a></p>
</footer>
</div>
</body>
</html>