-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
42 lines (39 loc) · 1.67 KB
/
404.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
<!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="./scss/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Crete+Round&display=swap" rel="stylesheet">
<title>Pagina no encontrada</title>
</head>
<body>
<div class="background-errorpage errorpageGrid">
<nav class="errorpage__nav">
<ul>
<li><a href="./index.html" id="logoHome"><img src="./assets/logoTopico.png" alt="Home"> |</a></li>
<li><a href="./nuestrahistoria.html">Nuestra historia</a> |</li>
<li><a href="./membresia.html">Membresía</a> |</li>
<li><a href="./escribir.html">Escribir</a> |</li>
<li><a href="./login.html">Iniciar sesión</a></li>
</ul>
</nav>
<main class="errorpage__main">
<h1>La página que estás buscando no está disponible</h1>
<h3>Te invitamos a que <a href="./index.html" class="errorpage__main__home">continúes</a> leyendo los
mejores artículos e historias!</h3>
</main>
<footer class="errorpage__footer">
<a href="./index.html">Home |</a>
<a href="ayuda">Ayuda |</a>
<a href="escritores"> Escritores |</a>
<a href="blog"> Blog |</a>
<a href="carreras"> Carreras |</a>
<a href="privacidad"> Privacidad |</a>
<a href="terminos"> Términos |</a>
<a href="sobrenosotros"> Sobre nosotros</a>
</footer>
</div>
</body>
</html>