HTML provides several elements to handle quotations, citations, and references. These elements help to clearly define different types of quoted content and ensure proper semantics in your HTML documents.
Here are some common HTML elements used for quotations:
<q>This is an inline quotation.</q>
This is an inline quotation.
<blockquote cite="https://example.com">
This is a block-level quotation.
</blockquote>
This is a block-level quotation.
<cite>Shakespeare</cite>
<abbr title="HyperText Markup Language">HTML</abbr>
<dfn>HTML</dfn> is a markup language.</code>