<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Challenge: Cards - Task</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="max-w-_____ _____ overflow-hidden shadow-lg _____-purple-100">
<img
class="_____-_____"
src="https://codefinity-content-media-v2.s3.eu-west-1.amazonaws.com/courses/615567da-b053-4674-b89c-053057d2bca7/section-3/fan.png"
alt="Sample Image"
/>
<div class="px-6 py-4">
<h2 class="font-_____ text-_____ text-purple-900 mb-2">Card Title</h2>
<p class="text-purple-700 text-_____ _____">
This is a simple card component created using Tailwind CSS. It
includes an image, a title, some text, and actions.
</p>
</div>
<div class="px-6 pt-4 pb-2">
<span
class="inline-block bg-yellow-200 _____-full px-3 py-1 text-_____ font-semibold text-yellow-700 mr-2 mb-2"
>#tag1</span
>
<span
class="inline-block bg-pink-200 _____-full px-3 py-1 text-_____ font-semibold text-pink-700 mr-2 mb-2"
>#tag2</span
>
<span
class="inline-block bg-green-200 _____-full px-3 py-1 text-_____ font-semibold text-green-700 mr-2 mb-2"
>#tag3</span
>
</div>
<div class="px-6 pt-4 pb-2">
<button
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded"
>
Action 1
</button>
<button
class="bg-red-500 hover:bg-red-700 text-white font-bold py-2 px-4 rounded ml-2"
>
Action 2
</button>
</div>
</div>
</body>
</html>