HTML Tag
Definition and usage
tag can define superscript text. (Recommended learning: html tutorial)
The content contained in the tag and its closing tag will be based on the current text flow It is displayed at half the character height, but the font and size are the same as those in the current text stream.
Tip: This tag is useful for adding footnotes to documents and for representing exponent values in equations. If used in conjunction with the tag, it can create a great hyperlink footer.Example
<html> <body> <p> This text contains <sup>superscript</sup> </p> </body> </html>
Rendering:
The above is the detailed content of What is the use of HTML tag?. For more information, please follow other related articles on the PHP Chinese website!