emmys / category-1.html
hudaakram's picture
Create category-1.html
0f65bf0 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Outstanding Drama Series — Emmys Portal</title>
<script src="https://cdn.tailwindcss.com"></script>
<script defer src="https://unpkg.com/lucide@latest"></script>
<style>
body {
min-height: 100vh;
background:
linear-gradient(rgba(5,5,5,.82), rgba(5,5,5,.82)),
url('https://wallpapercave.com/wp/wp2186661.jpg') center/cover fixed no-repeat;
}
</style>
</head>
<body class="text-yellow-50">
<div class="max-w-6xl mx-auto p-6">
<header class="flex items-center justify-between">
<h1 class="text-2xl font-black text-yellow-200">Outstanding Drama Series</h1>
<a href="index.html" class="px-3 py-2 rounded-xl bg-yellow-400 text-black text-sm font-semibold flex items-center gap-2">
<i data-lucide="arrow-left" class="w-4 h-4"></i> Back
</a>
</header>
<section class="mt-8 rounded-3xl border border-yellow-200/20 bg-black/30 p-6">
<ul class="grid sm:grid-cols-2 md:grid-cols-3 gap-3">
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Zendaya</li>
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Pedro Pascal</li>
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Kieran Culkin</li>
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Sarah Snook</li>
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Bella Ramsey</li>
<li class="rounded-xl border border-yellow-200/20 bg-yellow-50/[0.05] p-4">Rhea Seehorn</li>
</ul>
</section>
</div>
<script>lucide.createIcons()</script>
</body>
</html>