-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
35 lines (30 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Document</title>
</head>
<body>
<!-- component -->
<!-- This is an example component -->
<div class="h-screen w-screen bg-gray-50 flex items-center">
<div class="container flex flex-col md:flex-row items-center justify-between px-5 text-gray-700">
<div class="w-full lg:w-1/2 mx-8">
<div class="text-7xl text-green-500 font-dark font-extrabold mb-8"> 404</div>
<p class="text-2xl md:text-3xl font-light leading-normal mb-8">
Sorry we couldn't find the page you're looking for
</p>
<a href="index.html"
class="px-5 inline py-3 text-sm font-medium leading-5 shadow-2xl text-white transition-all duration-400 border border-transparent rounded-lg focus:outline-none bg-green-600 active:bg-red-600 hover:bg-red-700">back
to homepage</a>
</div>
<div class="w-full lg:flex lg:justify-end lg:w-1/2 mx-5 my-12">
<img src="https://user-images.githubusercontent.com/43953425/166269493-acd08ccb-4df3-4474-95c7-ad1034d3c070.svg"
class="" alt="Page not found">
</div>
</div>
</div>
</body>
</html>