HTMLSemantic Tags

Semantic tags describe meaning. Examples:

  • <header> → top of page
  • <nav> → menu
  • <main> → main content
  • <footer> → bottom of page

They make code easier to read.

<header>Welcome to My Site</header>
<nav>Menu here</nav>
<main>Main content</main>
<footer>Copyright 2025</footer>