Skip to main content

The <blockquote> Element

As defined in the HTML Living Standard, the <blockquote> element represents a section that is quoted from another source. Content within the blockquote should be a representation of that source.

Visual Example:
"Accessibility isn't extra work. Accessibility is already here, waiting for you to notice."
— SimpleAccess Manifesto
<blockquote cite="https://example.com/source"> <p>The quoted text goes here.</p> </blockquote> <cite>— The Author</cite> View HTML Living Standard: The blockquote element

Usage & Best Practices

WCAG Requirement: Info and Relationships

Success Criterion 1.3.1 (Level A): Information, structure, and relationships conveyed through presentation can be programmatically determined.

By using the <blockquote> element, you programmatically identify a section of text as a quote. Screen readers can announce the start and end of a quote, providing essential context to blind users that sighted users perceive via visual styling (like indentation).

Understand SC 1.3.1: Info and Relationships

Attribution Best Practices

While the HTML spec does not strictly define where the attribution (the source name) must live, the most common and accessible pattern is to place a <cite> or <figcaption> immediately following the blockquote.

A11y Tip: Using Figure

For the most robust semantic grouping, wrap your <blockquote> and its attribution in a <figure> element. This creates a clear programmatic relationship between the quote and its source.

<figure> <blockquote> <p>"The web is for everyone."</p> </blockquote> <figcaption>— Tim Berners-Lee</figcaption> </figure>