bjects

What are HTML Quotations?

HTML quotations are used to display text that is quoted from another source. They provide context and attribution, which is essential for maintaining integrity in writing and sharing information. Properly using quotation tags helps structure content semantically and improves accessibility.

Inline Quotations

For short quotations within a paragraph, you can use the <q> tag. This tag automatically adds quotation marks around the text.

Example of inline quotation:

<p>As Albert Einstein said, <q>Imagination is more important than knowledge.</q></p>

This renders as:

As Albert Einstein said, Imagination is more important than knowledge.

Block Quotations

For longer quotations, the <blockquote> tag is used. This tag is typically rendered as a block of text that is indented from the surrounding text.

Example of a block quotation:

<blockquote>
    <p>The only limit to our realization of tomorrow is our doubts of today.</p>
    <footer>— Franklin D. Roosevelt</footer>
</blockquote>

This renders as:

The only limit to our realization of tomorrow is our doubts of today.

— Franklin D. Roosevelt

Citing Sources

When quoting someone, it's essential to give proper credit. You can use the <cite> tag to reference the title of a work or the author of a quote:

Example:

<blockquote>
    <p>To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.</p>
    <footer>— <cite>Ralph Waldo Emerson</cite></footer>
</blockquote>

This renders as:

To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.

Ralph Waldo Emerson

Best Practices for Using HTML Quotations