-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
68 lines (63 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error 404 - Page Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url("./assets/img/background-connect.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 50%;
background-color: #1e1e1e;
padding: 20px;
border-radius: 10px;
box-shadow: 10px 20px 10px rgba(0, 0, 0, 0.5);
margin: 0 auto;
color: white;
}
h2 {
text-align: center;
color: white;
}
p {
text-align: center;
font-size: 18px;
}
button {
background-color: #d27bee;
color: white;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
display: block;
margin: 20px auto;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #834c95;
}
</style>
</head>
<body>
<div class="container">
<h2>Error 404</h2>
<p>Sorry, the page you are looking for could not be found.</p>
<p>Please check the URL or return to the home page.</p>
<button onclick="window.location.href='index.php'">Return to Home</button>
</div>
</body>
</html>