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:-

This is normal text

This issuperscriptedtext

HOME/BACK

Comments

Popular posts from this blog

Keywords in C Programming

Definition of C Language

Data Types in C Programming