-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnot_found.html
More file actions
103 lines (95 loc) · 2.21 KB
/
Copy pathnot_found.html
File metadata and controls
103 lines (95 loc) · 2.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 - Page Not Found</title>
<style>
/* CSS styles */
body {
background-color: #f8f8f8;
margin: 0;
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
animation: shake 0.5s;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
color: #555;
animation: pulse 2s infinite;
}
p {
font-size: 24px;
margin-top: 0;
color: #999;
animation: bounce 1s infinite;
}
a {
color: #0066cc;
text-decoration: none;
border-bottom: 2px solid #0066cc;
transition: all 0.3s;
}
a:hover {
background-color: #0066cc;
color: #fff;
}
@keyframes shake {
0% {
transform: translateX(0);
}
20% {
transform: translateX(-20px);
}
40% {
transform: translateX(20px);
}
60% {
transform: translateX(-20px);
}
80% {
transform: translateX(20px);
}
100% {
transform: translateX(0);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
@keyframes bounce {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Page Not Found</p>
</div>
</body>
</html>