Skip to content

Commit bbca80d

Browse files
authored
Add custom 404 error page
1 parent 2f45a0d commit bbca80d

1 file changed

Lines changed: 96 additions & 0 deletions

File tree

404.html

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>404 — Page Not Found</title>
7+
8+
<style>
9+
body {
10+
margin: 0;
11+
background: #000;
12+
color: #a10000;
13+
font-family: "Times New Roman", serif;
14+
text-align: center;
15+
padding: 32px 20px;
16+
overflow-x: hidden;
17+
}
18+
19+
h1 {
20+
margin: 0 0 20px 0;
21+
font-size: 31px;
22+
font-weight: bold;
23+
color: #cc0000;
24+
letter-spacing: 0.5px;
25+
}
26+
27+
.gif {
28+
width: 280px;
29+
max-width: 90vw;
30+
border: 1px solid #5e0000;
31+
display: block;
32+
margin: 24px auto 18px auto;
33+
}
34+
35+
.face {
36+
font-size: 26px;
37+
color: #760000;
38+
margin-bottom: 26px;
39+
}
40+
41+
.sub {
42+
font-size: 13px;
43+
color: #6b0000;
44+
margin-bottom: 28px;
45+
}
46+
47+
.codes {
48+
font-size: 11px;
49+
line-height: 1.8;
50+
color: #4e0000;
51+
opacity: 0.9;
52+
max-width: 700px;
53+
margin: 0 auto;
54+
word-break: break-word;
55+
}
56+
57+
.footer {
58+
margin-top: 42px;
59+
font-size: 10px;
60+
color: #2c0000;
61+
}
62+
63+
::selection {
64+
background: #300000;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
70+
<h1>404 PAGE NOT FOUND</h1>
71+
72+
<img src="1997.gif" alt="" class="gif">
73+
74+
<div class="face">:(</div>
75+
76+
<div class="sub">
77+
this page could not be located
78+
</div>
79+
80+
<div class="codes">
81+
VX-19 / 19.97 / A7:E1:97 / 01111001 01100101 01100001 01110010<br>
82+
4D 45 4D 4F 52 59 // 31-39-39-37 // 09.14.19<br>
83+
Δ-97 / cycle: 7:19 / key = 19×97 / 1-9-9-7<br>
84+
MCMXCVII / 110001 111101 011101 / 19:97:00<br>
85+
ref: 7A-19-9 / frame 97 / signal repeat: 19 / 19 / 19<br>
86+
01001101 01000101 01001101 01001111 01010010 01011001<br>
87+
K-19 / [9][7] / archive: open / closed / open / closed<br>
88+
31 39 39 37 / phase unknown / checksum invalid
89+
</div>
90+
91+
<div class="footer">
92+
/1997/
93+
</div>
94+
95+
</body>
96+
</html>

0 commit comments

Comments
 (0)