-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
66 lines (56 loc) · 1.64 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
65
66
<!DOCTYPE html>
<html>
<head>
<title>404 Error</title>
<meta name=”robots” content=”noindex”>
<meta name="viewport" content="initial-scale=1.0, width=device-width">
<meta name="description" content="Well, that's an error">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
p {
font-family: 'Roboto Mono', monospace;
}
h1 {
color: rgb(24, 203, 172);
font-family: 'lato', 'Sans-Serif';
}
html {
text-align: center;
}
a {
font-family: 'lato', 'Sans-Serif';
}
html {
text-align: center;
}
/* Dark theme start */
@media (prefers-color-scheme: dark) {
body {
background-color: #212121;
color: white;
}
input {
background-color: #212121;
color: white;
}
::placeholder {
color: white;
opacity: 1;
}
::-ms-input-placeholder,
:-ms-input-placeholder {
color: white;
}
}
/* Dark theme end */
</style>
<link href="/css/footer_credits.css" type="text/css" rel="stylesheet">
</head>
<body>
<h1>What?</h1>
<h5>404</h5>
<p> The requested URL was not found on the server. That's all we know. <a style="color: rgb(24,203,172);" href="/">Home</a>
<div style="font-family: Roboto;" id="footer" onclick="location.href = 'http://nicesapien.is-a.dev/'"> Built by NiceSapien </div>
</body>
</html>