Building a Simple Webpage Layout with Header, Main, and Footer
📖 Scenario: You are creating a simple webpage for a small local bakery. The webpage needs a clear structure with a header at the top, main content in the middle, and a footer at the bottom.
🎯 Goal: Build a basic HTML page using semantic tags: <header>, <main>, and <footer>. This will help organize the page content clearly and accessibly.
📋 What You'll Learn
Use the
<header> tag for the top section with the bakery nameUse the
<main> tag for the main content describing the bakeryUse the
<footer> tag for the bottom section with contact infoInclude the
lang attribute in the <html> tag set to "en"Include the
<meta charset="UTF-8"> tag in the <head>Include the
<meta name="viewport" content="width=device-width, initial-scale=1.0"> tag in the <head>💡 Why This Matters
🌍 Real World
Webpages for businesses often use semantic HTML tags to improve accessibility and SEO. This project shows how to structure a simple page clearly.
💼 Career
Knowing semantic HTML is essential for front-end web developers and helps create websites that work well for all users and devices.
Progress0 / 4 steps