Figure, Blockquote & Semantic Text in HTML

From the HTML cheat sheet ยท Text & Content Elements ยท verified Jul 2026

Figure, Blockquote & Semantic Text

Semantic wrappers for images, quotes, and meaningful inline text

html
<!-- Figure with caption -->
<figure>
  <img src="chart.png" alt="Sales chart">
  <figcaption>Q4 2024 sales performance</figcaption>
</figure>

<!-- Blockquote -->
<blockquote cite="https://example.com">
  <p>The only way to do great work is to love what you do.</p>
  <cite>Steve Jobs</cite>
</blockquote>
๐Ÿ’ก <figure> is not just for images โ€” use it for code blocks, videos, diagrams, anything with a caption
โšก <time datetime="..."> gives machines a parseable date โ€” great for SEO and accessibility
๐Ÿ“Œ <dl> description lists are perfect for glossaries, FAQs, and key-value pairs
๐ŸŸข <mark> highlights text, <kbd> shows keyboard keys, <code> shows inline code โ€” all semantic
figureblockquotesemantictext

More HTML tasks

Back to the full HTML cheat sheet