Skip to content

<blockquote> - Block Quotation

Block-level HTML 2.0

The <blockquote> element represents an extended quotation from another source. It’s used for longer quotes that should be displayed as a separate block, distinct from the surrounding text.

Result
<blockquote cite="source-url">
<p>Quoted text goes here.</p>
</blockquote>

The <blockquote> element wraps quotation content. Use the cite attribute to reference the source URL.

The cite attribute specifies the URL of the source:

<blockquote cite="https://example.com/article">
<p>The quoted text from the article.</p>
</blockquote>

The <blockquote> element supports all global attributes like id, class, style, and lang.

Result
Result
Result
Result
Result
Result
Result
Result
Result
Result
Result
Result
Result

Screen readers announce blockquotes as quotations:

<!-- Screen reader: "Block quote: The quoted text. End quote." -->
<blockquote>
<p>The quoted text.</p>
</blockquote>

Always attribute quotes when possible:

<blockquote>
<p>Quality is not an act, it is a habit.</p>
<footer>— Aristotle</footer>
</blockquote>
<div style="margin-left: 2rem;">
<p>Indented content that's not a quote.</p>
</div>
Result

Search engines may use the cite attribute:

<blockquote cite="https://www.authoritative-source.com/article">
<p>Important industry insight from a trusted source.</p>
</blockquote>

Avoid using extensive quoted content without original commentary:

<p>The HTML specification provides important guidance on semantic markup:</p>
<blockquote cite="https://html.spec.whatwg.org/">
<p>Use semantic elements to describe content meaning.</p>
</blockquote>
<p>Following this advice improves both accessibility and SEO...</p>
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE3+Full support

The <blockquote> element has been supported since early HTML versions.