HTML provides several tags for quotations, abbreviations, addresses, citations and text direction. These tags help improve readability and semantic meaning of web pages.
The <blockquote> tag defines a section quoted from another source. Browsers usually display blockquotes with indentation.
<p>Here is a quote:</p> <blockquote> Learning never exhausts the mind. </blockquote>
The <q> tag is used for short quotations. Browsers automatically add quotation marks.
<p> Soopro Pathshala says <q>Learn Coding Every Day</q> </p>
The <abbr> tag defines an abbreviation or acronym.
<abbr title="World Health Organization"> WHO </abbr>
The <address> tag defines contact information for an author or organization.
<address> SOOPRO Pathshala Aurangabad, Bihar www.soopropathshala.com </address>
The <cite> tag defines the title of a creative work such as a book, movie, painting or song.
<p> <cite>The Scream</cite> by Edvard Munch </p>
The <bdo> tag is used to override text direction.
<bdo dir="rtl"> Hello World </bdo>
Which tag is used for short quotations?