-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
39 lines (37 loc) · 802 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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="robots" content="all" />
<meta name="robots" content="index,follow"/>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
margin-top: 100px;
}
h1 {
font-size: 100px;
color: #ff0000;
}
p {
font-size: 20px;
}
a {
font-size: 18px;
text-decoration: none;
color: #0066cc;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Oops! The page you're looking for does not exist.</p>
<p><a href="/">Back to Homepage</a></p>
</body>
</html>