HTML Formatting tags - III

                                        HTML Formatting tags - III

Welcome to HTML formatting tags part - III.
1. <small> :- <small> tag shows text in small size as compare to other's.
2. <strong> :- <strong> defines an important text or in Phrase format.
3. <sub>    :- <sub> tag is used for showing text in subscript form. Like we type                                     chemical formula.
4. <sup>    :- <sup> tag is used for showing text in superscript form. Like we                                                     type Class name.
5. <wbr>    :- <wbr> stands for word break row. This tag is used for word                                                             breaking.

Let's have an example and enjoy it:-
<html>
 <head>
  <title>Hyper Text Markup Language</title>
 </head>
 <body>
   <p>Hyper Text Mark up Language</p>
   <small>Copyright 2001 - 2020 by web tips top</small>
   <strong>Hyper Text Markup Language</strong>
   <p>Formula of Water is :- H<sub>2</sub>o</p>
   <p>Class first is :- 1<sup>st</sup> </p>
   <p>Hyper Text Mark up Language<wbr>
         Hyper Text Mark up Language<wbr>
         Hyper Text Mark up Language<wbr>
   </p>
 </body>
 </html>

Comments

Popular Posts