3. Demonstration of HTML Text Formatting Tags.


    <html>
    <head>
    <title> text style </title>
    </head>

    <body>

    <p>How to use <i>Italic tag.</i></p>

    <p>How to use <b>Bold tag.</b></p>
    <p>How to use <u>Underline tag</u>.</p>
    <p>How to use <s>Strick tag</s>.</p>
    <p>How to use superscript tag like 2<sup> 2 </sup> is 4.</p>
    <p>How to use subscript tag like H<sub>2 </sub>O.</p>


    </body>
    </html>

    

Output

        No Output Available