-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
76 lines (63 loc) · 1.71 KB
/
Copy path404.html
File metadata and controls
76 lines (63 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>404 - Page Not Found</title>
<link rel="icon" type="image/x-icon" href="https://notintense.com/textures/favico.ico">
<style>
@font-face {
font-family: 'TerminusBold';
src: url("https://notintense.com/fonts/Terminus(TTF)Bold700.ttf") format("truetype");
font-weight: bold;
font-style: normal;
}
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #000;
color: #fff;
font-family: 'TerminusBold', sans-serif;
text-align: center;
}
img {
max-width: 80vw;
max-height: 80vh;
pointer-events: none;
opacity: 0;
animation: fadeIn 2s ease forwards;
}
a {
color: #ffd85e;
text-decoration: none;
}
a:hover {
text-decoration: underline;
opacity: 0.8;
}
a:visited {
color: #ffd85e;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
</style>
</head>
<body>
<meta property="og:title" content="404 - World dead.">
<meta property="og:description" content="Even if you bring back the sun, it will not go away.">
<meta property="og:url" content="https://notintense.com/404">
<meta property="og:image" content="https://notintense.com/textures/brokenBulbOneshot.png">
<meta property="og:type" content="website">
<div id="text" style="margin-bottom: 3%;">
<B>404: This world is dead, maybe
<a href="/">the next one</a></B>.
</div>
<img src="https://notintense.com/textures/brokenBulbOneshot.png">
</body>
</html>