-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
32 lines (32 loc) · 1.27 KB
/
404.html
File metadata and controls
32 lines (32 loc) · 1.27 KB
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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Full Stock | Página no encontrada</title>
<!-- Google Fonts preconnect for performance optimization -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Google Fonts stylesheet -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Protest+Guerrilla&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/index.css" />
</head>
<body>
<main class="root__main">
<section class="section container not-found">
<div class="not-found__content">
<h1 class="not-found__title">Página No Encontrada</h1>
<p class="not-found__message">
La página que estás buscando no existe o ha sido movida
</p>
<a href="/index.html" class="button button--primary button--lg"
>Volver al Inicio</a
>
</div>
</section>
</main>
</body>
</html>