This repository was archived by the owner on Apr 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (58 loc) · 1.4 KB
/
Copy path404.html
File metadata and controls
61 lines (58 loc) · 1.4 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Page Not Found | Dira GeoSystems</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {line-height:1.2;margin:0;}
html, body {
width:100%;height:100%;
font-family:sans-serif;
line-height:150%;
display:table;
text-align:center;
text-shadow:2px 2px 0 #444;
color:#eee;
background-color:#444;
}
body {
background-position:center;
background-size:cover;
background-image:url("dist/img/MercatorMonstreMarin.jpg");
display:table-cell;
vertical-align:middle;
margin:2em auto;
}
h1 {
font-size:2em;
font-weight:700;
margin:3pc auto;
}
p {
font-size:1.44em;
font-weight:500;
margin:1pc auto;
}
a {color:#eee;}
.dragons {
color:#eb4630;
text-shadow:1px 1px 0 #fda;
margin-top:1pc;
}
.source {
color:#ccc;font-size:1em;
position:absolute;width:100%;bottom:0;
z-index:-1; /*just in case: behind other text*/
}
.source a {color:#ccc;}
</style>
<body>
<h1 class="dragons" title="Here Be Dragons">Hic Sunt Dracones</h1>
<h1 title="HTTP 404">(Page Not Found)</h1>
<p>The page you were trying to view <nobr>does not exist.</nobr></p>
<p>Go back to safe waters: <a href="/">www.dirageosystems.ch</a></p>
<p class="source">Detail from a Mercator globe from about 1550,
<a href="https://www2.unil.ch/mercator/en/index.html">digitized
by Université de Lausanne</a></p>
</body>
</html>