-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
42 lines (42 loc) · 1 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
<!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: #f4f4f4;
margin: 0;
padding: 0;
text-align: center;
}
.container {
margin-top: 50px;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404 - Page Not Found</h1>
<p>Oops! The page you are looking for might have been removed or temporarily unavailable.</p>
<a href="/">Go to Homepage</a>
</div>
</body>
</html>