-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
30 lines (29 loc) · 784 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
<!DOCTYPE html>
<html>
<style>
body {
font-family: "Lato", "Sans-Serif", "Arial";
}
.main_box {
width: 800px;
margin: 6em auto;
padding: 3em;
background-color: #ececec;
border-radius: 1em;
box-shadow: 3px 3px 7px 3px #0000002c;
text-align: center;
}
</style>
<head>
<title>Page Not Found</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="main_box">
<h1>404</h1>
<h3>Page Not Found</h3>
<p><a href="/">Home</a></p>
</div>
</body>
</html>