Superscript and Subscript (<sup>, <sub>)

1
3K

Superscript is used to display text above the baseline, while subscript is used to display text below the baseline. In HTML, these effects can be achieved using the <sup> and <sub> elements, respectively.

Superscript: <sup>

Example:

HTML
<p>H<sub>2</sub>O is the chemical formula for water.</p>
<p>2<sup>3</sup> equals 8.</p>

Subscript: <sub>

Example:

HTML
<p>H<sub>2</sub>O is the chemical formula for water.</p>
<p>2<sub>3</sub> is not a common mathematical notation.</p>

Note:

  • Both <sup> and <sub> are primarily used for presentation purposes and don't convey any specific semantic meaning.
  • They are often used for mathematical formulas, chemical notation, and other specialized content.

Additional Considerations:

  • You can combine superscript and subscript within the same element.
  • For more complex mathematical expressions, consider using LaTeX or specialized mathematical notation tools.

By using <sup> and <sub>, you can effectively display superscript and subscript text in your HTML documents, enhancing the readability and accuracy of content that requires these formatting elements.

Like
3
Search
Categories
Read More
Chemistry
UCE CHEMISTRY SCORING GUIDE
UCE CHEMISTRY SCORING GUIDE
By Expedito 2024-08-10 13:47:53 0 3K
Computer Programming
Using the <span> Tag for Styling
The <span> tag is a generic HTML element that is often used to group inline elements...
By HTML PROGRAMMING LANGUAGE 2024-08-29 02:17:00 0 4K
Technology
COMPONENTS OF A LAN
A Local Area Network (LAN) is a network that connects computers and other devices within a...
By Olaim 2024-07-17 17:45:57 0 3K
Computer Programming
Doctype Declaration in HTML
What is a Doctype Declaration? A doctype declaration is an instruction to the web browser about...
By HTML PROGRAMMING LANGUAGE 2024-08-13 03:28:57 0 3K
Technology
Importance of Cyber Laws
Cyber laws, also known as internet laws or digital laws, are essential for regulating activities...
By Olaim 2024-07-16 17:07:21 0 3K