forked from endoflife-date/endoflife.date
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
39 lines (39 loc) · 768 Bytes
/
404.html
File metadata and controls
39 lines (39 loc) · 768 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page not Found | endoflife.date</title>
<style>
body {
background: #222;
color: #fff;
font-family: 'Segoe UI', Arial, sans-serif;
text-align: center;
padding: 5em 1em;
}
h1 {
font-size: 5em;
margin-bottom: 0.2em;
}
.emoji {
font-size: 5em;
margin-bottom: 0.2em;
}
p {
font-size: 1.5em;
margin-bottom: 2em;
}
a {
color: rgb(108, 77, 236);
text-decoration: underline;
font-weight: bold;
}
</style>
</head>
<body>
<div class="emoji">💀</div>
<h1>404</h1>
<p>This page has officially reached its end of life.</p>
<a href="/">Go to homepage</a>
</body>
</html>