Specifies a short quotation.
There are two elements in HTML that designate quoted text: the blockquote element for long quotations and the q element for short quotations. The contents of a blockquote element are rendered as an indented paragraph, the contents of a q element are rendered in quotation marks.
<p>
Some text before the quotation.
<q cite="http://www.quotationspage.com/quotes/Benjamin_Franklin/">
All would live long, but none would be old.
</q>
Some text after the quotation.
</p>
Some text before the quotation.
All would live long, but none would be old.
Some text after the quotation.