HTML Text Formatting Tutorial - Subscript Text
Description:
How to make subscript text in an html page.
Code:
<html>
<body>
This is normal text.
<sub>This is subscript text.</sub>
This is normal and <sub>this is subscript</sub> text.
</body>
</html>
Play with the code:
See working example:
Explanation:
To make subscript text in an html page, surround the text you want subscripted in the <sub></sub> tags.
See Also:
HTML: Html, Body, Sub
|