-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
58 lines (52 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
text-align: center;
}
.container {
margin: 100px auto;
max-width: 600px;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #f44336;
font-size: 100px;
margin: 0;
}
h2 {
font-size: 24px;
margin-top: 5px;
color: #333;
}
p {
font-size: 18px;
color: #777;
}
a {
text-decoration: none;
color: #2196F3;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, the page you are looking for doesn't exist.</p>
<p>Go back to the <a href="/">homepage</a>.</p>
</div>
</body>
</html>