We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738819d commit 2089f46Copy full SHA for 2089f46
404 error page .html
@@ -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