HTML 5 Quotation

What is meant by Quotation in HTML?

HTML <blockquote> for Quotations. The HTML <blockquote> element defines a section that is quoted from another source. Browsers usually indent <blockquote> elements.

 

What is the use of blockquote tag in HTML?

The HTML < blockquote> tag is used for indicating long quotations (i.e. quotations that span multiple lines). It should contain only block-level elements within it and not just plain text.

 

<Doctype!>
<Html>
<head>
<title> LearnPHPonline</title>
</head>
<body>
<p> India is Seventh Largest Country </p>
<blockquote> "But Now a Day, It is Counting In a Developing 
Country and 2nd lagest country in population" </blockquote>
</body>
</html>

 

HINT:

quotation tag use to make any paragraph/lines special and different from others

 

HTML Abbreviation abbr

Put mouse courser on HTML text and watch example of abbr tag 

 

<p> <abbr title="world health organization">WHO </abbr>
is the world largest oragination which makes always our world 
better and healthy </p>

 

*Address tag — it uses for mark address of anywhere

 

< address>
 H.no-00223 ,Ward no-4
 Dist-Palwal
 Haryana,India
 121105
 < address>

Loading