xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to add subscript in paragraph text in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Subscript Text in HTML Page</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Examples of Subscript Text</h1> <hr/> <!-- <sub> is used to display text subrscript --> <p>a<sub>2</sub> + b<sub>2</sub> is an example of HTML subscript text.</i><p> <p> <sub> tag is used to display subscript text </p> </body> </html>