The element <q> defines a short quotation. Browsers usually insert quotation marks around the <q>
<p>Life: <q>Life is like ice, emjoyit before it melts.</q></p>
<blockquote> element defines a section that is quoted from another source.
<p>A good quote from learnsimpli:</p> <blockquote cite="www.learsimpli.com"> Do not let a single day without doing anyhting to make your dream come true. </blockquote>
<abbr> defines an abbreviation or an acronym.
Marking abbreviations can give useful information to browsers, translation systems and search-engines.
<p>The <abbr title="Indian Space Research Organisation">ISRO</abbr> was founded in 15 August 1969.</p>
<address> defines contact information (author/owner) of a document or an article.
<address> usually displayed in italic. Most browsers will add a line break before and after the element.
<address> Written by Mary John<br> Visit us at:<br> # 67, 3rdmain 5th cross<br> Delhi, <br> INDIA </address>
<cite> defines the title of a work.
Browsers usually display <cite> elements in italic.
<p><cite>Tutorial</cite> by Sumaiyya B J K.</p>
<bdo> element defines bi-directional override.
The <bdo> element is used to override the current text direction
<bdo dir="rtl">This text will be written from right to left</bdo>
One thought on “HTML QUOTATION”
Comments are closed.