HTML Quotations


In this chapter we will go through the <blockquote>,<q>, <abbr>, <address>, <cite>, and <bdo> HTML elements.


HTML <blockquote> for Quotations

The HTML <blockquote> element designates a section of text that is quoted from another source./p>

Browsers usually indent <blockquote> elements.


HTML <q> for Short Quotations

The HTML <q> tag is used for short quotations, and browsers typically add quotation marks around the quoted text.


HTML <abbr> for Abbreviations

The HTML <abbr> signifies abbreviations or acronyms, like "HTML," "CSS," "Mr.," "Dr.," "ASAP," and "ATM."

By marking abbreviations with the tag, valuable information is provided to browsers, translation systems, and search engines.


HTML <address> for Contact Information

The HTML <address> is used to indicate the contact information of the document's author or owner.

This tag allows for the inclusion of various contact information, such as email addresses, URLs, physical addresses, phone numbers, social media handles, and more.

Text inside the <address> element is typically displayed in italic format, and browsers automatically insert a line break before and after the <address> element.


HTML <cite> for Work Title

The HTML <cite> tag specifies the title of a creative work, such as a book, poem, song, movie, painting, sculpture, and more

The text inside the <cite> element is typically displayed in italic.


HTML <bdo> for Bi-Directional Override

BDO stands for Bi-Directional Override.

The HTML <bdo> tag is utilised to override the current text direction.


HTML Quotation and Citation Elements

Tag Description
<abbr> Creates a short form or abbreviation for a word or phrase.
<address> Specifies the contact details for the person who created or owns a document.
<bdo> Specifies the direction of the text.
<blockquote> Specifies a part of content that is quoted from somewhere else.
<cite> Specifies the title of a piece of content.
<q> Describes a brief quote within a line.