-
Notifications
You must be signed in to change notification settings - Fork 11
/
404.html
42 lines (42 loc) · 815 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>404 Error</title>
<style type="text/css">
html {
font-size: 62.5%;
}
body {
background-color: #fff;
color: #000;
font-family: helvetica, arial, sans-serif;
font-size: 1.4em;
line-height: 1.5;
}
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.emoji {
font-size: 9em;
text-align: center;
}
.title {
font-size: 3em;
text-align: center;
line-height: 0em;
color: grey;
}
.text {
text-align: center;
}
</style>
</head>
<body class="centered">
<div class="emoji">😭</div>
<p class="title">Ooooops!</p>
<p class="text">This page doesn't exist anymore.</p>
</body>
</html>