Sunday, June 4, 2017

Explain about ins, sub, sup elements.

The HTML <ins> element defines inserted (added) text.

Example

<p>My favorite <ins>color</ins> is red.</p>


The HTML <sub> element defines subscripted text.

Example

<p>This is <sub>subscripted</sub> text.</p>

The HTML <sup> element defines superscripted text.

Example

<p>This is <sup>superscripted</sup> text.</p>