-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
54 lines (49 loc) · 1.44 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
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="https://script-js.github.io/js-css/darkice.css">
<title>404 Not Found</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:[email protected]&display=swap" rel="stylesheet">
</head>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
width: 98%;
height:98%;
}
@keyframes bounce {
0% {transform: translateY(-1000px)}
20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
@keyframes bounce2 {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
h1 {
font-size: 75px;
font-family: "Pixelify Sans", sans-serif;
animation: ease bounce2 1000ms;
animation-iteration-count: infinite;
}
* {
font-family: monospace;
}
h2 {
font-size: 40px;
}
</style>
<body>
<div style="text-align:center;animation: ease bounce 1000ms;">
<h1>404</h1>
<h2>Page Not Found</h2>
<p><a href="/">Go Home</a> | <a href="https://script-js.github.io/">script.js</a></p>
</div>
</body>
</html>