Html Semantic Structure — Free Html Tutorial
Learn Html Semantic Structure in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
TL;DR: Learn Html Semantic Structure in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.
Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated
Html Semantic Structure in Html
Semantic HTML describes meaning: <header>, <nav>, <main>, <section>, <article>, <aside>, <footer>. Screen readers and SEO benefit.
<header> is page/section intro. <nav> is navigation. <main> is primary content. <section> groups related content. <article> is standalone.
<aside> is supplementary (sidebar). <footer> is page/section end. Never use empty divs when semantic tags fit.
Html Semantic Structure — Syntax
<header><h1>Site Title</h1><nav>...</nav></header> <main> <section><h2>Topic</h2><p>...</p></section> <article><h3>Post</h3><p>...</p></article> <aside>Sidebar</aside> </main> <footer>Copyright</footer>
Learn Html Semantic Structure step by step with Syllab's free interactive Html tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Html course →