-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
51 lines (44 loc) · 1.14 KB
/
404.html
File metadata and controls
51 lines (44 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Oops · Keep Moving</title>
<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">
<style>
body {
font-family: Fira, Lato, sans-serif;
}
a {
color: #6d6d6d;
display: block;
padding-top: 20px;
text-decoration: none;
}
a:hover {
color: #212121;
}
h1 {
font-size: 80px;
font-weight: 100;
background-image: -webkit-linear-gradient(92deg, #01E164, #0079CA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: hue 60s infinite linear;
}
small {
font-size: 20px;
}
.content {
margin: 20% auto !important;
text-align: center !important;
}
</style>
</head>
<body>
<div class="content">
<h1>404</h1>
<small>Oops! It seems that you've stumbled across a page that doesn't exist!</small>
<a href="index.html">Keep Moving →</a>
</div>
</body>
</html>