Basics of HTML Coding part 3
common tags for texts are
<b> any text </b> to make it bold
<u> any text </u> to make it underlined
<i> any text </i> to make it italic
For HTML Fonts
<p>
<font size="5" face="arial" color="blue">
This paragraph is in Arial, size 5, and in blue text color.
</font>
</p>
<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Arial, size 5, and in blue text color.
</font>
</p>
note that <p> is used for paragraph <font> is used for font, font tag ahas other attributes like face and color.