To add color to your text you will need to add a new tag to the font tag. Here are two examples, first using a named color:Click Here For A Name Color Chart
<FONT SIZE="4" COLOR="blue">
Second using a HEX color:
<FONT SIZE="4" COLOR="#3333FF">
Click Here For An HEX Color ChartHere Is Our HTML Document. With A Heading And Some Colored Text. Also Using A Paragraph And A Text Break.
<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY BGCOLOR="#000000" TEXT="#00FF00" LINK="yellow" VLINK="orange" ALINK="red">
<H1>Welcome To My Home Page</H1>
<P>
<FONT SIZE="3" COLOR="white">
You have just entered<BR>
my first web page.<BR>
I'm just starting out <BR>
writting html, it's fun.
</FONT>
</BODY>
</HTML>
Click Here To See Our HTML Document So Far
Use Your Back Button To Return Here