-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
42 lines (34 loc) · 1.39 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A layout example that shows off a responsive product landing page.">
<link href="favicon.png" rel="shortcut icon" type="image/x-icon" />
<title>Page not found</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-" crossorigin="anonymous">
<!--[if lte IE 8]>
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsive-min.css">
<!--<![endif]-->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css">
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/marketing-old-ie.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="css/marketing.min.css">
<!--<![endif]-->
<link rel="stylesheet" href="css/style.min.css">
</head>
<body id="error-page">
<div class="content-center">
<div class="error">
<h1 class="error-header">Error 404</h1>
<p class="error-text">This page does not exist.</p>
</div>
<a class="pure-button button-secondary" href="/"><i class="fa fa-home" aria-hidden="true"></i> Home</a>
</div>
</body>
</html>