-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path404.html
51 lines (43 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404</title>
<style type="text/css">
body {
background: linear-gradient(120deg,gray,white,gray);
background-size: 400% 400%;
animation: BackgroundGradient 10s ease infinite;
}
@keyframes BackgroundGradient {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}
h1,p {
position: absolute;
left: 50%;
top: 30%;
transform: translateX(-50%) translateY(-50%);
font-family: Open Sans, sans-serif;
color: #fff;
font-weight: 400;
text-transform: uppercase;
text-align: center;
font-size: 2em;
background-color: #000;
padding: 5px;
}
p{
top:40%;
}
</style>
</head>
<body>
<h1>404 !</h1>
<p>Page not found.<br>think new link ;)</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript"></script>
</body>
</html>