forked from TailGrids/tailwind-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
112 lines (111 loc) · 2.88 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
108
109
110
111
112
<!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.0" />
<title>Error 404 | TailGrids</title>
<link
rel="shortcut icon"
href="assets/images/favicon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/tailwind.css" />
</head>
<body>
<!-- ====== Error 404 Section Start -->
<section class="bg-primary py-[120px] relative z-10">
<div class="container">
<div class="flex -mx-4">
<div class="w-full px-4">
<div class="mx-auto max-w-[400px] text-center">
<h2
class="
font-bold
text-white
mb-2
text-[50px]
sm:text-[80px]
md:text-[100px]
leading-none
"
>
404
</h2>
<h4
class="text-white font-semibold text-[22px] leading-tight mb-3"
>
Oops! That page can’t be found
</h4>
<p class="text-lg text-white mb-8">
The page you are looking for it maybe deleted
</p>
<a
href="javascript:void(0)"
class="
text-base
font-semibold
text-white
inline-block
text-center
border border-white
rounded-lg
px-8
py-3
hover:bg-white hover:text-primary
transition
"
>
Go To Home
</a>
</div>
</div>
</div>
</div>
<div
class="
absolute
-z-10
w-full
h-full
top-0
left-0
flex
justify-between
items-center
space-x-5
md:space-x-8
lg:space-x-14
"
>
<div
class="w-1/3 h-full bg-gradient-to-t from-[#FFFFFF14] to-[#C4C4C400]"
></div>
<div class="w-1/3 h-full flex">
<div
class="
w-1/2
h-full
bg-gradient-to-b
from-[#FFFFFF14]
to-[#C4C4C400]
"
></div>
<div
class="
w-1/2
h-full
bg-gradient-to-t
from-[#FFFFFF14]
to-[#C4C4C400]
"
></div>
</div>
<div
class="w-1/3 h-full bg-gradient-to-b from-[#FFFFFF14] to-[#C4C4C400]"
></div>
</div>
</section>
<!-- ====== Error 404 Section End -->
</body>
</html>