-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path404.html
77 lines (69 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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" />
<title>Page not Found</title>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<!-- Favicon linking -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="icons/favicons/favicon-32x32.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="icons/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="icons/favicons/favicon-16x16.png"
/>
<!-- Custom stylesheet -->
<style>
html,
body {
height: 100%;
margin-top: auto;
margin-bottom: auto;
}
h1 {
color: #ebc135;
font-size: 60px;
}
h2 {
color: #707070;
}
</style>
</head>
<body>
<div class="row h-100" style="margin: 0 auto">
<div class="container-sm text-center align-self-center">
<h1>
<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> 404
</h1>
<h2>Oops! Page not found</h2>
<img
class="rounded img-fluid"
src="images/landing.svg"
alt="404 error"
width="50%"
height="50%"
/>
</div>
</div>
</body>
</html>