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

1
5K

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
Zoeken
Categorieën
Read More
Onderwijs
MODERN AFRICAN NATIONAL HISTORY MADE EASY
https://acrobat.adobe.com/id/urn:aaid:sc:EU:4838a935-5393-417a-a9b9-a4c21d6109cb
By Expedito 2024-07-18 10:47:57 0 6K
Onderwijs
P.5 AND P.6 SCIENCE REVISION
P.5 AND P.6 SCIENCE REVISION
By Expedito 2024-08-04 10:33:50 0 6K
Business
Small Businesses: The Backbone of the Economy and Pillars of Community Growth
In the intricate fabric of our global economy, small businesses are the threads that hold it...
By Olaim 2024-08-03 15:15:09 0 6K
Computer Programming
Break and Continue, Loop Else, and Enumerate
Break, Continue, Loop else, and Enumerate in Python These are all control flow statements used...
Technology
Cybersecurity
Cybersecurity involves protecting computer systems, networks, and data from digital attacks,...
By Olaim 2024-07-15 18:06:32 0 6K