HTML for Kids: A Beginner’s Course | HTML and CSS

✅ Description:

Understand the layout of a full webpage using semantic tags.

📘 Explanation:

  • Use tags like <header>, <main>, <footer>, <nav>, and <section> to organize your page semantically.

💻 Code Example:

<header>
<h1>My Webpage</h1>
</header>
<nav>
<a href="#">Home</a> | <a href="#">Contact</a>
</nav>
<main>
<section>
<h2>About Me</h2>
<p>I enjoy music and math!</p>
</section>
</main>
<footer>
<p>&copy; 2025 My Site</p>
</footer>
 

🛠️ Exercise:

  • Build a layout with a header, navigation bar, main section, and footer using semantic tags.