Semantic HTML – Full Cheat Sheet

Tag Category Description Example
<header>SectioningHeader of page or section<header>Logo</header>
<nav>SectioningNavigation links<nav><a href="#">Home</a></nav>
<main>SectioningMain content<main>Content</main>
<aside>SectioningSecondary content<aside>Sidebar</aside>
<article>SectioningIndependent content<article>Blog</article>
<section>SectioningStandalone section<section>Features</section>
<footer>SectioningFooter<footer>© 2026</footer>
<details>SectioningExpandable content<details><summary>Click</summary>More</details>
<summary>SectioningSummary of details<summary>Title</summary>
<h1>-<h6>SectioningHeadings<h2>Subheading</h2>
<p>ContentParagraph<p>Hello</p>
<blockquote>ContentQuotation<blockquote>Quote</blockquote>
<dl>ContentDescription list<dl><dt>Term</dt><dd>Desc</dd></dl>
<dt>ContentTerm name<dt>Term</dt>
<dd>ContentTerm description<dd>Description</dd>
<figure>ContentImage container<figure><img src="#" /></figure>
<figcaption>ContentCaption for figure<figcaption>Caption</figcaption>
<hr>ContentHorizontal line<hr>
<ul> / <ol>ContentLists<ul><li>Item</li></ul>
<li>ContentList item<li>Item</li>
<menu>ContentSemantic list<menu><li>Item</li></menu>
<pre>ContentPreformatted text<pre>Text</pre>
<a>InlineAnchor link<a href="#">Link</a>
<abbr>InlineAbbreviation<abbr title="HTML">HTML</abbr>
<b>InlineBold text<b>Bold</b>
<br>InlineLine breakLine1<br>Line2
<cite>InlineCreative work title<cite>Book</cite>
<code>InlineCode snippet<code>alert('Hi')</code>
<data>InlineMachine-readable data<data value="100">100</data>
<em>InlineEmphasized text<em>Emphasis</em>
<i>InlineItalic text<i>Italic</i>
<mark>InlineHighlighted text<mark>Highlight</mark>
<q>InlineShort quote<q>Quote</q>
<s>InlineStrikethrough<s>Old</s>
<samp>InlineSample output<samp>Output</samp>
<small>InlineSmall text<small>Note</small>
<span>InlineGeneric container<span>Text</span>
<strong>InlineImportant text<strong>Important</strong>
<sub>InlineSubscript<sub>2</sub>
<sup>InlineSuperscript<sup>2</sup>
<time>InlineDate & Time<time datetime="2026-02-09">Feb 9</time>
<u>InlineUnderline<u>Text</u>
<var>InlineVariable<var>x</var>
<img>MediaImage<img src="#" alt="Img">
<audio>MediaAudio<audio src="#" controls></audio>
<video>MediaVideo<video src="#" controls></video>
<source>MediaMedia source<source src="#" type="video/mp4">
<picture>MediaResponsive images<picture><img src="#" /></picture>
<iframe>MediaEmbedded page<iframe src="#"></iframe>
<embed>MediaExternal content<embed src="#">
<object>MediaBrowser object<object data="#"></object>
<canvas>MediaGraphics<canvas></canvas>
<svg>MediaVector graphics<svg></svg>
<table>TableTable container<table></table>
<thead>TableTable header<thead></thead>
<tbody>TableTable body<tbody></tbody>
<tfoot>TableTable footer<tfoot></tfoot>
<tr>TableTable row<tr></tr>
<td>TableTable cell<td>Cell</td>
<th>TableHeader cell<th>Header</th>
<caption>TableTable caption<caption>Caption</caption>
<colgroup>TableColumn group<colgroup></colgroup>
<col>TableColumn<col></col>