What is HTML Text Formatting


What is HTML Text Formatting

HTML contains several elements for defining text with a special meaning.


Example :

<html>
<body>

<p><b>This text is bold</b></p>
<p><i>This text is italic</i></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>

</body>
</html>

Answer :

This text is bold
This text is italic
This is subscript and superscript
Next Post Previous Post