<abbr>
Use title to give the full form of an abbreviation.
<abbr title="World Health Organization">WHO</abbr>
modern front end tech
Use the right tags when text is quoted, cited, abbreviated, or written in a different direction.
HTML includes elements that describe quotations, sources, abbreviations, contact information, and text direction. These tags help browsers, readers, and search engines understand your content.
<blockquote> for longer quotationsThe <blockquote> element is for quoted content that stands on its own as a block. Use the optional cite attribute when you have a source URL.
<blockquote cite="https://example.com/source">
Good markup gives content clear meaning.
</blockquote>
Good markup gives content clear meaning.
<q> for short quotationsThe <q> element is for a short quote inside a sentence. Browsers usually add quotation marks automatically.
<p>The teacher said, <q>Practice small examples every day.</q></p>
The teacher said, Practice small examples every day.
<cite> for a work titleThe <cite> element names the title of a book, article, song, film, website, or other work.
<p><cite>The Great Gatsby</cite> is a novel by F. Scott Fitzgerald.</p>
The Great Gatsby is a novel by F. Scott Fitzgerald.
<abbr>Use title to give the full form of an abbreviation.
<abbr title="World Health Organization">WHO</abbr>
<address>Use it for contact information for a person, organization, or page owner.
<address>
Email: hello@example.com
</address>
<bdo>Use it when you need to override the normal text direction.
<bdo dir="rtl">Right to left</bdo>
Use <blockquote> for a long quote, <q> for a short quote, and <cite> for the title of a source.