Skip to content

Commit 2089f46

Browse files
committed
Done
1 parent 738819d commit 2089f46

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

404 error page .html

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>404 Error - Page Not Found</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
text-align: center;
11+
background-color: #f5f5f5;
12+
}
13+
14+
h1 {
15+
font-size: 6rem;
16+
color: #333;
17+
margin-top: 20vh;
18+
}
19+
20+
p {
21+
font-size: 1.5rem;
22+
color: #666;
23+
}
24+
25+
a {
26+
color: #007bff;
27+
text-decoration: none;
28+
}
29+
30+
a:hover {
31+
text-decoration: underline;
32+
}
33+
</style>
34+
</head>
35+
<body>
36+
<h1>404</h1>
37+
<p>Sorry, the page you are looking for could not be found.</p>
38+
<p><a href="/">Go to the homepage</a></p>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)