<html><body>
This is normal text. <br/><fontcolor="red">This is red text.</font><br/><fontcolor="#CCCCCC">This is grey text.</font><br/><fontcolor="rgb(0,0,255)">This is blue text.</font><br/>
This is normal and <fontcolor="red">this is red</font> text.
</body></html>
Play with the code:
See working example:
Explanation:
To make colored text in an html page, surround the text you want colored in the <font></font> tags
and fill the COLOR property with the color you want. To specify the color you can use one of the three ways from
the example.