Project 12: Product Landing Page
HTML Masterclass
Builds on these lessons
Step 1 of 2
Project
Skeleton & Hero CTA
Build the hero section: an <h1> tagline, a <p> description, and a primary <button type="button"> as the call to action. Buttons default to type="submit" inside a form — since there's no form here, being explicit with type="button" avoids surprises later.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nimbus | Focus, without the noise</title>
</head>
<body>
<h1>Focus, without the noise</h1>
<p>Nimbus blocks distracting sites during your work hours, automatically.</p>
<button type="button">Get Started — It's Free</button>
</body>
</html>