HTML fonts formatting is a very easy term of learning html. At first you open your notepad and write down these codes. And after saving open it in any of your browser.
<html>
<body>
<p><font size="2" face="Verdana">
This is a paragraph.
</font></p>
<p><font size="5" face="Times" color="red">
This is another paragraph.
</font></p>
</body>
</html>
Save as test_fonts.html
See the result like as this picture.
<html>
<body>
<p><font size="2" face="Verdana">
This is a paragraph.
</font></p>
<p><font size="5" face="Times" color="red">
This is another paragraph.
</font></p>
</body>
</html>
Save as test_fonts.html
See the result like as this picture.