Quotations (<blockquote>, <q>)

0
3K

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
Zoeken
Categorieën
Read More
Wellness
SELF AWARENESS FOR TEENAGERS
SELF AWARENESS FOR TEENAGERS
By FACILITATION CORNER 2024-08-26 05:16:04 0 3K
Computer Programming
HTML Headings (<h1> to <h6>)
HTML headings are used to define headings and subheadings on a web page. They provide structure...
By HTML PROGRAMMING LANGUAGE 2024-08-15 01:17:39 0 2K
Onderwijs
Timeline 1875-1890
1875 A Senate commission meeting with Red Cloud and other Lakota chiefs to negotiate legal...
By Modern American History 2024-08-02 16:29:08 0 3K
Other
Turkish Airlines Flight Makes Emergency Landing at JFK After Pilot Dies
New York, October 9, 2024 – A Turkish Airlines flight from Seattle to Istanbul made an...
By Updates 2024-10-09 17:55:15 0 3K
Technology
How Technology is Reshaping Our World
From Smart Homes to Smart Cities: Technology is Reshaping Our World. What Tech Innovation Excites...
By ALAGAI AUGUSTEN 2024-07-23 17:35:18 0 3K