Quotations (<blockquote>, <q>)

0
5K

Quotes are used to display text that is a direct quote from another source. In HTML, there are two main elements for this purpose: <blockquote> and <q>.

<blockquote> Element

The <blockquote> element is used for long, multi-line quotes. It typically includes a block-level quote with indentation and a different background color.

Example:

HTML
<blockquote>
  The only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't settle.
  <cite>Steve Jobs</cite>
</blockquote>   

Attributes:

  • cite: Specifies the URL of the original source.
  • cite-title: Specifies the title of the original source.

<q> Element

The <q> element is used for short, inline quotes. It is often used for quotes within paragraphs or other inline content.

Example:

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

Attributes:

  • cite: Specifies the URL of the original source.

Choosing the Right Element:

  • Use <blockquote> for long, multi-line quotes that stand out from the main content.
  • Use <q> for short, inline quotes that are part of the flow of the text.

Additional Considerations:

  • You can nest quotes within quotes using both elements.
  • For more complex quote formatting, consider using CSS styles.

By using <blockquote> and <q>, you can effectively display quotes in your HTML documents, giving proper attribution to the original source and improving the readability of your content.

Like
3
Search
Categories
Read More
Other
Clear the Clutter
 A Word of Encouragement Life is a journey filled with ups and downs, triumphs and...
By Olaim 2024-08-10 12:44:57 0 5K
Computer Programming
F-String Formatting and String Splicing
F-strings and string splicing are both methods for creating formatted strings in Python. However,...
Technology
Ethics of Using Computers Between People
The use of computers and digital technology in interactions between people raises numerous...
By Olaim 2024-07-13 07:16:31 0 7K
Chemistry
UACE CHEMISTRY PAPER 2 2024
UACE CHEMISTRY PAPER 2 2024
By Expedito 2024-08-09 19:53:41 0 6K