
HTML sup tag - W3Schools
Definition and Usage The <sup> tag defines superscript text. Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font. Superscript text can be used for …
<sup>: The Superscript element - HTML | MDN - MDN Web Docs
Jul 9, 2025 · The <sup> HTML element specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller …
HTML Subscript and Superscript Tags - GeeksforGeeks
Jan 14, 2025 · In HTML, the <sub> tag is used for subscript, making text appear slightly below the normal line, while the <sup> tag is used for superscript, positioning text slightly above the normal line
HTML Superscript and Subscript (With Examples) - Programiz
The HTML and tags are used to implement superscript and subscript. In this tutorial, we will learn about them with the help of examples.
HTML Superscript: Syntax, Usage, and Examples
The HTML superscript element lets you raise text slightly above the baseline, often used for footnotes, mathematical exponents, or ordinal indicators. The superscript HTML tag is simple to use and …
HTML sup tag - Learn HTML | W3Docs
Use the <sup> tag to define the superscript text, which appears half a character above the regular line and is rendered smaller than the rest of the text.
HTML <sup> tag - Computer Hope
Mar 21, 2025 · When writing in HTML (HyperText Markup Language), the <sup> tag is an inline element used to designate superscript text, which appears higher, and usually smaller, than the text around it. …
HTML: <sup> tag - TechOnTheNet
The HTML <sup> tag defines superscript text in an HTML document. For example, when dealing with an area value such as 36 ft 2, the number 2 is rendered as superscript.
Superscript and Subscript text in HTML - Code2care
Sep 3, 2024 · Let us understand how to Superscript and Subscript text in HTML with hands-on examples.
How to Define Superscripted Text using HTML? - GeeksforGeeks
Jul 15, 2025 · To define superscripted text in HTML5, use the <sup> tag. This tag adds superscript text to your HTML document, displaying it half a character above the normal line and often in a smaller …