George and Susan Welcome to our HTML help page!
Home | HTML-Index | Basic HTML | HTML Structure
Change Font Face / Change Font Size / Text Basics

Changing The Font Color


Type this:
down
<font color="blue">Your Text</font>

And you get the following:
down
Your Text
Using the <font> tag with the color attribute lets you change the font color for a section of text on your Auction or Web page.

To change the font color:
  1.   Before the text to be changed, type:
    <font color="?">
    Replace ? with the name or hexadecimal value for the color you want to use.
    (example: red or #FF0000)
  2. Type the text that should be displayed with the given font color.
  3. Type </font>
Example:

Type this.
down
<font color="#0000FF">The color of text can add visual interest.</font>

And you get the following:
down
The color of text can add visual interest.


Tip

The FONT tag is also used to change the face (click here) and the size (click here) you can combine all attributes in the same tag e.g.,
Change font Face, Size and Color.
Type this:
down
<font size=4 face="Comic Sans MS" color="#CC00FF">YOUR TEXT</font>

And you get the following:
down
YOUR TEXT

My home page

Back