-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
65 lines (64 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex">
<meta charset="UTF-8">
<link rel="shortcut icon" href="./pics/myIcon.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tyizo | Error 404</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto Mono', monospace;
color: white;
}
body {
-webkit-animation: bgcolor 20s infinite;
animation: bgcolor 10s infinite;
-webkit-animation-direction: alternate;
animation-direction: alternate;
}
@keyframes bgcolor{
0% {background-color: #5900ff}
60% {background-color: #02c8ff}
90% {background-color: #ff4f6c}
100% {background-color: #7232b3;}
}
.error {
text-align: center;
margin-top: 270px;
}
.msg{padding: 12px;}
.msg h1{font-size: 65px;}
.msg h2{font-size: 35px;}
a{
position: relative;
text-decoration: none;
top: 30px;
font-size: 30px;
padding: 10px;
border: 3px solid white;
border-radius: 20px;
transition: 0.7s ease-out;
}
a:hover {
box-shadow: 0 0 40px black;
background-color: black;
border: 3px solid black;
transition: 0.6s ease-out;
}
</style>
</head>
<body>
<div class="error">
<div class="msg">
<h1>Error 404</h1>
<h2>Page Not Found!</h2>
<a href="http://tyizo1.rf.gd/">Go Back</a>
</div>
</div>
</body>
</html>