-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
72 lines (62 loc) · 1.79 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
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "ly8bu4nldl");
</script>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
animation: pulse 10s infinite;
background-image: url(./assets/static.gif);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
h1 {
font-size: 48px;
color: #ffffff;
}
p {
font-size: 18px;
color: #666;
margin-bottom: 30px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/*
@keyframes pulse {
0% {
background-color: #1d2531;
}
50% {
background-color: #14253f;
}
100% {
background-color: #1d2531;
}
}
*/
</style>
</head>
<body>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist or has been moved.</p>
<p>You can go back to the <a href="/">home page</a> or try something else.</p>
</body>
</html>