-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
40 lines (40 loc) · 873 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
<!DOCTYPE html>
<html>
<head>
<title>404 Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./assets/favicons/logo.png">
<style>
body {
color: #fbfbff;
background-color: #121212;
font-family: sans-serif;
text-align: center;
}
h1 {
font-size: 10vw;
padding: 1vw;
width: 50%;
margin: 5% 25% 15% 25%;
height: 50%;
background-color: #292929;
border-radius: 10px;
font-weight: 1000;
user-select: none;
}
p {
font-size: 24px;
margin: 10% 10% 10px 10%;
}
a {
font-size: 24px;
color: #abcdef;
}
</style>
</head>
<body>
<h1>4 0 4</h1>
<p>We're sorry, but this page was not found. This may be due to the page not existing anymore, or having a different URL.</p>
<a href="/">Back to Home</a>
</body>
</html>