Write a program to display the subscript text in html
Name of Program - Program to display subscript text.
Text Editor - Notepad, Notepad++, Visual Studio Code, Atom, etc.
Code Input-
<!DOCTYPE html>
<html>
<head>
<title>Subscript Text Example</title>
</head>
<body>
<p>The following word uses a <sub>superscript</sub> typeface.</p>
</body>
</html>
Output Screen - Internet Browser, Google Chrome, Microsoft Edge, etc.
Code View -
The following word uses a superscript typeface.
Post a Comment