Safcode Institute by Sir Safder





  • Formatting Tags in HTML

    Formatting Tags:
    These formatting tags can make text bold, italic, subscripted, & more.
    
    HTML Code:
    
    <p>An example of <b>Bold Text</b></p>
    <p>An example of <em>Emphasized Text</em></p>
    <p>An example of <strong>Strong Text</strong></p>
    <p>An example of <i>Italic Text</i></p>
    <p>An example of <sup>superscripted Text</sup></p>
    <p>An example of <sub>subscripted Text</sub></p>
    <p>An example of <del>struck hrough Text</del></p>
    <p>An example of <code>Computer Code Text</code></p>
    
    HTML Formatting Output:
    
    

    An example of Bold Text

    An example of Emphasized Text

    An example of Strong Text

    An example of Italic Text

    An example of superscripted Text

    An example of subscripted Text

    An example of struck hrough Text

    An example of Computer Code Text



  • You Can Also Watch Our Tutorial