The Superscript element specifies that the enclosed text should be displayed as a superscript, and if practical, using a smaller font (compared with normal text). This is an HTML 3.0 element and may not be widely supported.
This is the main text, with <SUP>this bit</SUP> being superscript.
Would render as:
This is the main text, with this bit being superscript.
NOTE : The selected text will be made a superscript to the main text, formatting the selected text slightly smaller than the normal text. Netscape and the Internet Explorer can be forced to make superscripts even smaller by compounding the <SUP> ... </SUP>
element with the <SMALL> ... </SMALL>
element, or be forced to render the superscript the same size as the normal text, by compounding the <SUP> ... </SUP>
element with the <BIG> ... </BIG>
element.
The exact appearance of the superscript text will change depending on any <FONT SIZE=...>
and <BASEFONT SIZE=...>
settings, if specified.
<SUP>
can also take the CLASS, ID and STYLE attributes to allow style sheet definitions to be applied to it. For more details of these attributes, see the Style Sheets topic.