easy
+10 XP
FRONTEND
Hero Section
Build a hero section with gradient background, centered text, and CTA button.
You're exploring as a guest. Create a free account to save progress and submit solutions.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="/styles.css" /> <script src="https://cdn.tailwindcss.com"></script> </head> <body> <section class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-20 text-center"> <h1 class="text-4xl font-bold">Hero</h1> </section> <script src="/index.js"></script> </body> </html>