-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
107 lines (93 loc) · 3.28 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Base URL -->
<base href="https://www.edukeen.co.uk/">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="HandheldFriendly" content="true">
<!-- Page Title -->
<title>404 - Not Found</title>
<meta name="author" content="Cyberoctane" />
<!-- Appearance -->
<meta name="theme-color" content="#08164a" />
<link rel="icon" type="image/png" href="img/favicons/favicon-64x64.png" sizes="60x60">
<link rel="apple-touch-icon" sizes="180x180" href="img/icons/apple-touch-icon-180x180.png">
<link rel="manifest" href="manifest.json">
<link rel="canonical" href="https://www.edukeen.co.uk/">
<!-- DNS Prefetching -->
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="dns-prefetch" href="//ajax.googleapis.com" />
<link rel="dns-prefetch" href="//unpkg.com" />
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="//www.google.com" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="//www.gstatic.com" />
<!-- External CSS -->
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,900&display=swap">
<!-- Font Awsome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">
<!-- Site CSS -->
<link rel="stylesheet" href="css/edukeen-style.css" type="text/css">
<style>
h1,
h2,
h3,
p {
text-align: center !important;
}
h3 {
line-height: 1.2;
color: darkgray;
}
.nav {
justify-content: center !important;
}
.nav-logo {
width: 100px !important;
}
.message-page {
height: 100vh;
}
.message-content {
height: 100%;
background-color: rgb(255, 255, 255);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.message {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<div class="message-page">
<div class="nav">
<a class="nav-logo" href="/">
<img src="img/edukeen-logo.svg">
</a>
</div>
<!------------------------- Content starts ------------------------->
<div class="message-content">
<div class="message">
<h1 style="color: #4CAF50;">404 - Page Not Found!</h1>
<h2>Ooops! Smoething went wrong.</h2>
<h3>The page you are looking for might have been removed,<br>had it's name changed or is temporarily
unavailable.</h3>
<br>
<br>
<a class="go-back" href="/">Go Back<i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</body>
</html>