The Sub and Sup Tags in HTML |
|
Subscript Tag : This tag is used to define subscript text. Subscript can be defined by using the following tags
<Sub> ... </Sub>
Example:
This is the SubScript text.
Code:
This is the <sub>SubScript</sub>
text.
Superscript Tag: Used to define superscript text. Tags that are used to define superscript are..
<sup> ... </sup>
Example:
This is the SuperScript text.
Code:
This is the <sup>SuperScript</sup> text.
|