Quote
A quotation offset from the text around it.
Basic Usage
You can style quotes (typically blockquote
elements) by giving them the quote
class.
And he said,don't quote me on this, but...
<blockquote class="quote">
And he said, <q>don't quote me on this, but...</q>
</blockquote>
Citation
To add a citation to a quote, add a footer
element that optionally contains a cite
element.
Words can be like X-rays, if you use them properly—they’ll go through anything. You read and you’re pierced.
<blockquote
class="quote"
cite="https://www.huxley.net/bnw/four.html"
>
<p>
Words can be like X-rays, if you use them
properly—they’ll go through anything. You read and
you’re pierced.
</p>
<footer>
—Aldous Huxley, <cite>Brave New World</cite>
</footer>
</blockquote>