Text formatting learn HTML
this is example for text formatting:
<html>
<body>
<b>this line is bold</b>
<br>
<big>this line is big</big>
<br>
<em>this line is emphasized</em>
<br>
<i>this line is italic</i>
<br>
<small>this line is small</small>
<br>
<strong>this line is strong</strong>
<br>
<sub>this line is subscripted</sub>
<br>
<sup>this line is superscripted</sup>
<br>
<ins>this line is inserted</ins>
<br>
<del>this line deleted</del>
</body>
</html>