HTML Quotations
HTML has several elements for marking up quotations. The <blockquote> element represents a section quoted from an external source. Browsers usually render it indented. The cite attribute can hold the URL of the source.
Inline Quotes and Citations
For short, inline quotations use <q> — browsers automatically add quotation marks. The <cite> element represents the title of a creative work (a book, song, film, etc.) and is rendered in italics by default. These elements communicate structure to assistive technologies.
<blockquote cite="url">— Long block quote<q>— Short inline quotation<cite>— Title of a work