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