-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
51 lines (43 loc) · 883 Bytes
/
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
<!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 {
background-color: #f8f8f8;
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
h1 {
font-size: 48px;
margin-bottom: 20px;
}
p {
font-size: 24px;
margin-bottom: 40px;
}
a {
color: #333;
text-decoration: none;
font-weight: bold;
}
@media screen and (max-width: 600px) {
h1 {
font-size: 36px;
}
p {
font-size: 18px;
margin-bottom: 30px;
}
}
</style>
</head>
<body>
<h1>404 Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
<p><a href="/">Go back to the homepage</a></p>
</body>
</html>