Text formatting tags in HTML.

Text formatting tags in HTML


 10 Text formatting tags in HTML.

  • <b>  It make bold text

    Example of bold tag in html: 

Output:

  • <strong> - It make important text

        Example:


    <strong>Make me strong</strong>
 

Output:

  • <i> - It make italic text

Example

    <i>Make me strong</i>
 

Output:


  • <em> - It emphasized text

Example

    <em>Em tag example</em>
 


Output


  • <mark> - It marked text

Example

    <mark>Mark tag example</mark>
 
Output

  • <small> - It make smaller text

Example

    <small>Small tag example</small>
 
Output


  • <del> - It show deleted text

Example


    <del>del tag example</del>
 

  • <ins> - Inserted text

Example

    <ins>ins tag example</ins>
 
Output


  • <sub> - Superscript text

Example

   <p>
       This is <sup>ins tag example</sup>
       a <sup>2</sup> + b<sup>2</sup>
   </p>
   
 

Output


  • <sup> - Subscript text

Example




Reactions

Post a Comment

0 Comments