<q>
Published Mar 4, 2022Updated Jul 1, 2022
Contribute to Docs
The <q>
element is used to represent a brief inline quotation, as opposed to the <blockquote>
element being used for longer ones.
It accepts a cite
attribute that links to a valid URL that provides further context for the quotation.
Syntax
<q cite=""><!-- Brief quotation goes inside the tag --></q>
The <q>
element requires an opening and closing tag wrapped around a line of text. The browser will automatically enclose the text in quotation marks.
Example
<!-- The text between the q tags will be surrounded by quotation marks --><p>The World Wide Web Consortium's idea of the Web includes<q cite="https://www.w3.org/Consortium/mission">participation, sharing knowledge, and thereby building trust on a globalscale.</q>One can't help but agree with it!</p>
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.