This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
64 lines (63 loc) · 1.65 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<meta name="author" content="Imabanana80" />
<link
rel="icon"
type="image/x-icon"
href="/static/assets/icons/favicon.ico"
/>
<link rel="stylesheet" , href="./static/css/theme.css" />
<title>404 Not Found</title>
</head>
<style>
#main {
text-align: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 100%;
width: 60rem;
}
#main h1 {
font-size: 5rem;
margin-bottom: 0rem;
}
#desc {
font-size: 1.5rem;
margin-top: 0.5rem;
margin-bottom: 0rem;
}
#footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
text-align: center;
font-size: 1rem;
color: #808080;
}
#footer-link {
color: #808080;
}
</style>
<body>
<div id="main">
<h1>404 Not Found</h1>
<p id="desc">
Whoops! The page you are looking for has either moved or does
not exist.
</p>
</div>
<div id="footer">
<p>
<a id="footer-link" href="./"> by Imabanana80 </a>
</p>
</div>
</body>
</html>