-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
39 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Not Found | 404</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#101D42" />
<meta property="og:locale" content="en" />
<!--Tailwind CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.0.2/tailwind.min.css" />
<!--Site Icon-->
<link rel="shortcut icon" href="Assets/Icons/404.png" title="favicon" />
<link rel="apple-touch-icon" href="Assets/Icons/404.png" sizes="180x180" title="favicon" />
<link rel="canonical" href="https://natesworld-projects.github.io/">
<!--Import CSS-->
<link rel="stylesheet" href="Styles/globals.css">
<link rel="stylesheet" href="Styles/404.css">
</head>
<body>
<div class="app-mount" id="app-mount">
<section class="text-gray-600 body-font">
<div class="container px-5 py-24 mx-auto">
<div class="xl:w-1/2 lg:w-3/4 w-full mx-auto text-center">
<p class="leading-relaxed text-lg text-indigo-500 rounded">Wrong Turn?</p>
<span class="inline-block h-1 w-10 rounded mt-8 mb-6 text-gray-500"></span>
<p class="text-white">
Sorry, but this page either is not working or does not exist. Would you like to go home?
</p>
<a href="index.html" class="">Go back?</a>
</div>
</div>
</section>
</div>
</body>
</html>