-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
50 lines (50 loc) · 1.22 KB
/
404.html
File metadata and controls
50 lines (50 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<title>Whoops! Error 404</title>
<meta property="og:title" content="Bad URL!" />
<meta property="og:description" content="This link doesnt look valid. Check it again for any errors." />
<meta property="og:type" content="website" />
<style>
@font-face {
font-family: "Audiowide";
src: url("/assets/fonts/Audiowide.ttf") format("truetype");
}
body {
background-image: url("/assets/backgrounds/404.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
background-color: #220022;
min-height: 100vh;
text-align: center;
}
h1 {
color: orange;
font-family: Audiowide;
vertical-align: text-top;
top: 35%;
font-size: 35px;
}
p {
color: white;
font-family: Audiowide;
vertical-align: text-top;
font-size: 20px;
}
a {
color: cyan;
font-family: Audiowide;
vertical-align: text-top;
font-size: 20px;
}
</style>
</head>
<body>
<h1>Hmm...</h1>
<p>Error 404. What you're trying to look for isn't here!</p>
<p>Check for any typos in the URL. If there are none, the page may simply not exist yet.</p>
<a href="https://posifurg.dev">Go back home</a>
</body>
</html>