Lesson 10 of 21 – HTML Quotations
48%

HTML Quotations

HTML provides several tags for quotations, abbreviations, addresses, citations and text direction. These tags help improve readability and semantic meaning of web pages.

Definition: HTML quotation elements include <blockquote>, <q>, <abbr>, <address>, <cite> and <bdo>.

HTML <blockquote>

The <blockquote> tag defines a section quoted from another source. Browsers usually display blockquotes with indentation.

Example
<p>Here is a quote:</p>

<blockquote>
Learning never exhausts the mind.
</blockquote>

HTML <q>

The <q> tag is used for short quotations. Browsers automatically add quotation marks.

Example
<p>
Soopro Pathshala says
<q>Learn Coding Every Day</q>
</p>

HTML <abbr>

The <abbr> tag defines an abbreviation or acronym.

Example
<abbr title="World Health Organization">
WHO
</abbr>

HTML <address>

The <address> tag defines contact information for an author or organization.

Example
<address>
SOOPRO Pathshala
Aurangabad, Bihar
www.soopropathshala.com
</address>

HTML <cite>

The <cite> tag defines the title of a creative work such as a book, movie, painting or song.

Example
<p>
<cite>The Scream</cite>
by Edvard Munch
</p>

HTML <bdo>

The <bdo> tag is used to override text direction.

Example
<bdo dir="rtl">
Hello World
</bdo>

Key Points

  • <blockquote> creates long quotations.
  • <q> creates short quotations.
  • <abbr> defines abbreviations.
  • <address> defines contact information.
  • <cite> defines work titles.
  • <bdo> changes text direction.

🧠 Quiz

Which tag is used for short quotations?