-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
43 lines (36 loc) · 859 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page not found - 404</title>
</head>
<body>
<style>
* {
margin: 0;
padding: 0;
}
body {
text-align: center;
background-color: #ccc;
font-family: sans-serif;
color: #000;
}
a {
text-decoration: none;
color: dodgerblue;
}
h1 {
font-size: 120px;
}
h4 {
margin-bottom: 2em;
}
</style>
<h1>404</h1>
<h4>Sorry, but this page not found.</h4>
<a href="/">Back to home</a>
</body>
</html>