View Full Version : Different Color?


Suspension
10-26-2005, 12:05 AM
How do I make like one sentence a different color from the regular font and background?
Example...
My backround is gray and my regular font is blue thoughtout the page. How would I make like one sentence red or something?

Seven11
10-26-2005, 12:22 AM
Ending the blue color, then typing in the code but with the color being red, then ending the red and starting up blue again.

<font color="blue">Blue Text.</font color>
<font color="red">Red Text.</font color>
<font color="blue">Blue Text again.</font color>

If you were looking for a different way, then i'm afraid that I may be of no help then.

Suspension
10-26-2005, 12:38 AM
Ok thank you soooooo much! ive been trying to figure that out forever!
When you change the font how would you change the size and style?

pb&j
10-26-2005, 07:13 AM
Ending the blue color, then typing in the code but with the color being red, then ending the red and starting up blue again.

<font color="blue">Blue Text.</font color>
<font color="red">Red Text.</font color>
<font color="blue">Blue Text again.</font color>

If you were looking for a different way, then i'm afraid that I may be of no help then.

umm... correction on the coding there...

<font color="blue">Blue Text.</font>
<font color="red">Red Text.</font>
<font color="blue">Blue Text again.</font>

if you want to stick with using the FONT tag, then the style (font type) can be done with adding FACE="VALUE" to it and the size is done with SIZE="VALUE".

<font color="#0000ff" size="3" face="Comic Sans"> text here </font>

color can be any color code (or name),
size can be from -7 to 7,
face can be the name of any font but should be one that most other people have installed too.

if you get into using CSS coding, the same stuff can be done but on a much higher level. it takes font to the extreme.