Superscript in HTML
In HTML <sup> element tags defines Superscripted texts.Superscript text appears half a character above the normal texts and is sometimes rendered in a smaller font. Superscript text can be used for footnotes, like
WWW[1]
Input:-
<html>
<body>
<p>This is normal text</p>
<p>This is<sup> superscripted</sup>text </p>
</body>
</html>
Output:-
Comments
Post a Comment