Menu
The blockquote
tag specifies that the enclosed text is quoted from another source. It is usually indented by the browser by default. The source of the quotation can be given using a URL in the cite
attribute, or a text representation using the <cite>
tag.
Example:
<blockquote cite="https://examplesource.com">
<p>This is a quotation.</p>
</blockquote>
<blockquote>
<p>This is a quotation.</p>
<cite>This is the source</cite>
</blockquote>
User-submitted codepen.io examples of <blockquote>
↴
Submit a codepen.io link that demonstrates <blockquote>
: