-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
100 lines (81 loc) · 2.09 KB
/
404.html
File metadata and controls
100 lines (81 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page Not Found</title>
<style>
body {
margin: 0;
background: #000;
color: #a10000;
font-family: "Times New Roman", serif;
text-align: center;
padding: 32px 20px;
overflow-x: hidden;
}
h1 {
margin: 0 0 20px 0;
font-size: 31px;
font-weight: bold;
color: #cc0000;
letter-spacing: 0.5px;
}
.gif {
width: 280px;
max-width: 90vw;
border: 1px solid #5e0000;
display: block;
margin: 24px auto 18px auto;
}
.face {
font-size: 26px;
color: #760000;
margin-bottom: 26px;
}
.sub {
font-size: 13px;
color: #6b0000;
margin-bottom: 28px;
}
.codes {
font-size: 11px;
line-height: 1.8;
color: #4e0000;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
word-break: break-word;
}
.footer {
margin-top: 42px;
font-size: 10px;
color: #2c0000;
}
::selection {
background: #300000;
}
</style>
</head>
<body>
<h1>404 PAGE NOT FOUND</h1>
<img src="1997.gif" alt="" class="gif">
<div class="face">:(</div>
<div class="sub">
this page could not be located
</div>
<div class="codes">
VX-19 / 19.97 / A7:E1:97 / 01111001 01100101 01100001 01110010
4D 45 4D 4F 52 59 // 31-39-39-37 // 09.14.19
Δ-97 / 7:19 / 19×97 / 1-9-9-7
MCMXCVII / 110001 111101 011101 / 19:97:00
7A-19-9 / 97 / 19 / 19 / 19
01001101 01000101 01001101 01001111 01010010 01011001
K-19 / [9][7] / 01 / 00 / 01 / 00
31 39 39 37 // 00:00:00 // — — —
</div>
<div class="footer">
/1997/
</div>
</body>
</html>