-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
71 lines (66 loc) · 1.86 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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #ff6b6b, #f7d9d9);
color: #fff;
text-align: center;
position: relative;
overflow: hidden;
}
h1 {
font-size: 6em;
margin: 0;
text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}
p {
font-size: 1.5em;
margin: 20px 0;
text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}
a {
display: inline-block;
padding: 10px 20px;
font-size: 1.2em;
color: #fff;
background-color: #007bff;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s;
}
a:hover {
background-color: #0056b3;
transform: scale(1.05);
}
.background-animation {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://source.unsplash.com/random/1920x1080') no-repeat center center fixed;
background-size: cover;
filter: blur(10px);
z-index: -1;
}
</style>
</head>
<body>
<div class="background-animation"></div>
<div>
<h1>404</h1>
<p>Oops! The page you are looking for does not exist.</p>
<p><a href="index.html">This button may help you.</a></p>
</div>
</body>
</html>