subscript and superscript Tags in Html

subscript and superscript Tags in Html   :


Superscript : The <sup> tag defines superscript text (text above the line
                     Example :
                                  2S
subscript :  The <sub> tag defines superscript text (text below  the line)
                            Example :
                                  H2


Code :

<!DOCTYPE html>
<html>
<head>
<title>coding wala</title>
</head>
<body>
<h1>
coding <sup> wala</sup>
<br>
coding<sub>wala</sub>

<br>
H<sub>2</sub><sup>o</sup>
</h1>
</body>
</html>


For video on youtube explain very easily click => : Video For Subscript and superscript tag

Comments

Popular posts from this blog

Search Record From Table Using jQuery in Asp.net core MVC

Calendar in Asp.net

CheckBox in Asp.Net MVC (Insert Data of CheckBox in Database and GetData Of checkBox From DataBase)