-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
27 lines (26 loc) · 857 Bytes
/
error.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" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ERROR 404 - Página no encontrada</title>
<link rel="icon" href="./assets/icons/svg/10.svg" type="image/x-icon" />
<link rel="stylesheet" href="./css/error.css" />
</head>
<body>
<main>
<!-- ---cursor ----->
<div id="custom-cursor"></div>
<!-- ----mensajes ----->
<section class="container">
<div class="error-code">404</div>
<div class="message">Sorry, te has perdido</div>
<div id="button">
<a href="index.html" class="home-button"> <p>VOLVER AL HOME</p></a>
</div>
</section>
</main>
<script src="./script.js"></script>
</body>
</html>