How to format the text as bold, italic, subscript and superscript in HTML?
For Bold: Â Â Â Â Â Â Â Starting : <bold> Â Â Â Closing: </bold>
For italic: Â Â Â Â Â Â Â Starting : <i> Â Â Â Â Â Â Closing: </i>
For Subscript:Â Â Â Starting : <sub> Â Â Â Closing: </sub>
For Supercript:Â Â Â Starting : <sup> Â Â Â Closing: </sup>
The Text-Formatting Element in HTML
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<html> <body> <h1>Welcome To T4-Tutorials</h1> <h2>Text-Formatting:</h2> <p>The Text may be "Bold", "Italic", "Subscript" and "Superscript"</p> <p><b>Thanks For Your Love For T4-Tutorials</b></p> <p><i>Thanks For Your Love For T4-Tutorials</i></p> <p>Thanks For<ssub><b>
Your Love For T4-Tutorials</b>......</sub> Thanks For<sup><b>Your Love For T4-Tutorials</sup></p> </body> </html> |
The delete Element Formatting in HTML
Video Lecture