-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 2.08 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Juego del ahorcado</title>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/general.css">
<link rel="stylesheet" href="./css/boton.css">
<link rel="stylesheet" href="./css/index.css">
<script src="https://kit.fontawesome.com/070f11682f.js" crossorigin="anonymous"></script>
</head>
<body class="contenedor">
<header class="encabezado">
<img class="logo" src="./img/camd-high-resolution-logo-color-on-transparent-background.png" alt="Logo camd">
</header>
<main class="menu-principal">
<div class="botonera">
<a href="./html/ahorcado.html">
<button id="iniciar-juego" type="button" class="boton-iniciar-juego boton-relleno boton">Iniciar juego</button>
</a>
<a href="./html/ingresar-palabra.html">
<button id="agregar-palabra" type="button" class="boton-agregar-palabra boton-transparente boton">Nueva palabra</button>
</a>
</div>
</main>
<footer class="footer"><pre class="footer__text">Desarrollado por </pre><pre class="author">Christian Ariel Modesto Duarte 2022 </pre><pre class="footer_links"><a class="footer__link" href="https://camduarte.github.io/juego-del-ahorcado/" target="_blank"><i class="fa-brands fa-github"></i></a> <a class="footer__link" href="https://www.linkedin.com/in/christian-ariel-modesto-duarte" target="_blank"><i class="fa-brands fa-linkedin"></i></a></pre></footer>
</body>
</html>