tailgrids
Version:
Handcrafted Library of Tailwind CSS UI Components & Blocks for HTML, React and Vue.
135 lines (133 loc) • 5.16 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>Blog | 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>
<!-- ====== Blog Section Start -->
<section class="bg-white pb-10 pt-20 lg:pb-20 lg:pt-[120px] dark:bg-dark">
<div class="container mx-auto">
<div class="-mx-4 flex flex-wrap justify-center">
<div class="w-full px-4">
<div class="mx-auto mb-[60px] max-w-[510px] text-center lg:mb-20">
<span class="mb-2 block text-lg font-semibold text-primary">
Our Blogs
</span>
<h2
class="mb-4 text-3xl font-bold text-dark sm:text-4xl md:text-[40px] dark:text-white"
>
Our Recent News
</h2>
<p class="text-base text-body-color dark:text-dark-6">
There are many variations of passages of Lorem Ipsum available
but the majority have suffered alteration in some form.
</p>
</div>
</div>
</div>
<div class="-mx-4 flex flex-wrap">
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="mb-10 w-full">
<div class="mb-8 overflow-hidden rounded-sm">
<img
src="../images/blogs/blog-01/image-01.jpg"
alt="image"
class="w-full"
/>
</div>
<div>
<span
class="mb-5 inline-block rounded-sm bg-primary px-4 py-1 text-center text-xs font-semibold leading-loose text-white"
>
Dec 22, 2023
</span>
<h3>
<a
href="javascript:void(0)"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl dark:text-white"
>
Meet AutoManage, the best AI management tools
</a>
</h3>
<p class="text-base text-body-color dark:text-dark-6">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="mb-10 w-full">
<div class="mb-8 overflow-hidden rounded-sm">
<img
src="../images/blogs/blog-01/image-02.jpg"
alt="image"
class="w-full"
/>
</div>
<div>
<span
class="mb-5 inline-block rounded-sm bg-primary px-4 py-1 text-center text-xs font-semibold leading-loose text-white"
>
Mar 15, 2023
</span>
<h3>
<a
href="javascript:void(0)"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl dark:text-white"
>
How to earn more money as a wellness coach
</a>
</h3>
<p class="text-base text-body-color dark:text-dark-6">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
<div class="w-full px-4 md:w-1/2 lg:w-1/3">
<div class="mb-10 w-full">
<div class="mb-8 overflow-hidden rounded-sm">
<img
src="../images/blogs/blog-01/image-03.jpg"
alt="image"
class="w-full"
/>
</div>
<div>
<span
class="mb-5 inline-block rounded-sm bg-primary px-4 py-1 text-center text-xs font-semibold leading-loose text-white"
>
Jan 05, 2023
</span>
<h3>
<a
href="javascript:void(0)"
class="mb-4 inline-block text-xl font-semibold text-dark hover:text-primary sm:text-2xl lg:text-xl xl:text-2xl dark:text-white"
>
The no-fuss guide to upselling and cross selling
</a>
</h3>
<p class="text-base text-body-color dark:text-dark-6">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ====== Blog Section End -->
</body>
</html>