-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
57 lines (53 loc) · 938 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Page Not Found</title>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
background-color: #f5f5f5;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 200px;
margin-bottom: 0;
animation: color-change 3s infinite;
}
p {
font-size: 24px;
margin-top: 10px;
color: #777;
}
@keyframes color-change {
0%, 100% {
color: #e74c3c;
}
25% {
color: #3498db;
}
50% {
color: #9b59b6;
}
75% {
color: #27ae60;
}
}
</style>
</head>
<body>
<div class="content">
<h1>404</h1>
<p>What are you looking for?</p>
</div>
</body>
</html>