Creating a Webpage with Headings (h1-h6)
📖 Scenario: You are building a simple webpage for a small community event. The page needs clear headings to organize the content so visitors can easily find information.
🎯 Goal: Create a webpage using all six heading levels from <h1> to <h6> to show the event's title and different sections.
📋 What You'll Learn
Use all heading tags from
<h1> to <h6> exactly once.Each heading must have the exact text specified in the instructions.
Use semantic HTML5 structure with
<main> as the container for headings.Include the
lang attribute in the <html> tag and proper <meta charset="UTF-8"> in the <head>.Make sure the page is accessible with clear heading hierarchy.
💡 Why This Matters
🌍 Real World
Webpages often use headings to organize content so visitors can scan and understand the page quickly.
💼 Career
Knowing how to structure headings and use semantic HTML is essential for building accessible and well-organized websites.
Progress0 / 4 steps