In HTML, quotation and citation elements are used to represent quotes and references within a document. These elements help provide semantic meaning to text, indicating that certain content is a quote or a citation, and they are often styled differently by default in browsers.
<q>
The <q>
element is used for short, inline quotations. It is typically used for quoting a few words or a single sentence within a paragraph
Try it yourself
<blockquote>
The <blockquote>
element is used for longer, block-level quotations. It is typically used when quoting a paragraph or multiple sentences
Try it yourself
<cite>
The <cite>
element is used to reference the title of a creative work, such as a book, article, poem, movie, or artwork
Try it yourself
<abbr>
The <abbr>
element represents an abbreviation or acronym. It helps browsers and assistive technologies understand abbreviated text. A title attribute is often used to specify the full term when the user hovers over the abbreviation.
Try it yourself
<address>
The <address>
element is used to provide contact information for a person, organization, or website. It usually contains physical addresses, email addresses, phone numbers, or links to social media profiles.
Try it yourself
<bdo>
The <bdo>
element is used to override the text direction for its content. It is particularly useful in cases where the default text direction (left-to-right or right-to-left) needs to be reversed.
Try it yourself