Click to See Complete Forum and Search --> : Colo(u)rs


realchamp
June 5th, 2009, 03:58 PM
Hello, all!

How can I make a piece of red with the <font> tags?

I can't seem to find a syntax.


<font color=red> here text goes? </font>
/* This doesn't work!*/




Any help is appreciated!

-realchamp.

dannystommen
June 6th, 2009, 06:15 AM
Try

<font color="red"> here text goes? </font>


That is what I use myself and that works

PeejAvery
June 10th, 2009, 12:41 PM
First off, the <font> tag is deprecated...use <span>. Also, you should use CSS to change colors.

<span style="color: #ff0000;">This will be red.</span>

Teranoz
June 12th, 2009, 07:39 AM
or even shorter : #f00 instead of #ff0000 :-)