-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
32 lines (32 loc) · 851 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404: Page Not Found</title>
<link rel="stylesheet" type="text/css" href="./assets/main.css" />
<style>
body {
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
h1 {
font-size: 10em;
color: #234;
}
</style>
</head>
<body>
<h1>404: Not Found</h1>
<p>
Whoops! We can't find that page... Sorry about that. <strong>Want to <a href="/">go home</a>?</strong>
</p>
</body>
</html>