-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
43 lines (42 loc) · 1.03 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
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404 - No encontrado</title>
<style>
#logo {
height: 32px;
vertical-align: middle;
}
#text {
max-width: 360px;
text-align: center;
margin: 0 auto;
}
#note {
display: inline-block;
text-align: center;
position: fixed;
width: 100%;
bottom: 0;
left: 0;
}
body {
font-family: 'PT Sans', Roboto, 'Droid Sans', Helvetica, Arial, sans-serif;
text-align: center;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="text">
<h1>404</h1>
<h2>No encontrado</h2>
<p id="text-detail">
El objeto al que intentaste acceder no existe.<br>
Si crees que es un error, por favor repórtalo.
</p>
</div>
<small id="note">Sitio mantenido por <img src="https://nubenautas.com/imgs/nubenautas.svg" id="logo" alt="NN"> <a href="https://nubenautas.com/">Nubenautas</a></small>
</body>
</html>