HTML Subscript Formatting Explain
The HTML <sub> element defines subscripted text.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>This is <sub>subscripted</sub> text.</p>
</body>
</html>
Html Code Result:
This is subscripted text.
HTML Superscript Formatting Explain
The HTML <sup> element defines superscripted text.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>This is <sup>superscripted</sup> text.</p>
</body>
</html>
Post a Comment