tailgrids
Version:
Handcrafted Library of Tailwind CSS UI Components & Blocks for HTML, React and Vue.
68 lines (66 loc) • 2.3 kB
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="relative z-10 bg-primary py-[120px]">
<div class="container mx-auto">
<div class="-mx-4 flex">
<div class="w-full px-4">
<div class="mx-auto max-w-[400px] text-center">
<h2
class="mb-2 text-[50px] font-bold leading-none text-white sm:text-[80px] md:text-[100px]"
>
404
</h2>
<h4
class="mb-3 text-[22px] font-semibold leading-tight text-white"
>
Oops! That page can’t be found
</h4>
<p class="mb-8 text-lg text-white">
The page you are looking for it maybe deleted
</p>
<a
href="javascript:void(0)"
class="inline-block rounded-lg border border-white px-8 py-3 text-center text-base font-semibold text-white transition hover:bg-white hover:text-primary"
>
Go To Home
</a>
</div>
</div>
</div>
</div>
<div
class="absolute left-0 top-0 -z-10 flex h-full w-full items-center justify-between space-x-5 md:space-x-8 lg:space-x-14"
>
<div
class="h-full w-1/3 bg-linear-to-t from-[#FFFFFF14] to-[#C4C4C400]"
></div>
<div class="flex h-full w-1/3">
<div
class="h-full w-1/2 bg-linear-to-b from-[#FFFFFF14] to-[#C4C4C400]"
></div>
<div
class="h-full w-1/2 bg-linear-to-t from-[#FFFFFF14] to-[#C4C4C400]"
></div>
</div>
<div
class="h-full w-1/3 bg-linear-to-b from-[#FFFFFF14] to-[#C4C4C400]"
></div>
</div>
</section>
<!-- ====== Error 404 Section End -->
</body>
</html>