Select Chapter ❯
HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Main Tags
- HTML All Tags
- HTML Attributes
- HTML Formating
- HTML Comments
- HTML Links
- HTML Images
- HTML Tables
- HTML List
- HTML Iframes
- HTML Style
- HTML Javascript
- HTML Forms
- HTML Elements
HTML5 Tutorial
HTML Media
HTML Text Formating
HTML has also used some tags to format the text and display differently.
Some of the text-formating tags are as follows.
- <b></b>:It is called bold tag the text between the bold tag is displayed in bold
- <i></i>:It is called italic tag the text between the italic tag is displayed in italicized
- <u></u>:It is called underline tag the text between the underline tag is displayed with underline
- <small></small>:It is called small tag the text between the small tag is displayed in small size as compared to other text
- <big></big>:It is called large tag the text between the larger tag is displayed in larger size as compared to other text
- <strike></strike>:It is called strike tag the text between the strike tag is displayed in with the thin line over the text
- <sup></sup>:It is called superscript tag the text between the superscript tag is displayed half a character's height above the other characters
- <sub></sub>:It is called subscript tag the text between the subscript tag is displayed half a character's height beneath the other characters
- <ins></ins>:It is called inserted tag the text between the inserted tag is displayed as inserted text
- <del></del>:It is called delete tag the text between the del tag is displayed as deleted text
Example of bold tag
Result of above example
This is the example of Bold tag
Example of italic tag
Result of above example
This is the example of italic tag
Example of underline tag
Result of above example
This is the example of Underline tag
Example of small tag
Result of above example
This is the example of small tag
Example of larger tag
Result of above example
This is the example of large tag
Example of strike tag
Result of above example
This is the example of strike tag
Example of superscript tag
Result of above example
This is the example of superscript tag
Example of subscript tag
Result of above example
This is the example of subscript tag
Example of insert tag
Result of above example
This is the example of deletedinserted tag
Example of delete tag
Result of above example
This is the example of deletedinserted tag
❮ PreviousNext ❯