-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
35 lines (35 loc) · 947 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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>404 Page no found</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<link rel="stylesheet" href="./css/error_page.css" type="text/css" />
<meta name="viewport" content="width=device-width" />
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
</head>
<body translate="no">
<div class="error-page-wrap">
<article class="error-page gradient">
<hgroup>
<h1>
404
</h1>
<h2>
Oops! page not found, working my ass of on it.
</h2>
</hgroup>
<a class="error-back" href="#" title="Back to site">back</a>
</article>
</div>
</body>
</html>