View Full Version : Question about colors


steveo11
02-23-2007, 09:19 PM
So I am curious how one knows what code to use for what color. For example

<font color="#00000" size"3">

what color does #00000 represent and how do I know this?

amyaurora
02-23-2007, 09:26 PM
#000000 is black. Here are two pages to read about colors.

Lissa's color page (http://www.lissaexplains.com/color.shtml)

Color Combos (http://www.colorcombos.com/)

iGeek
02-25-2007, 12:19 AM
Changing colors is much better accomplished using CSS. Just do this:


<span class="somethinghere">Text here will be colored white</span>


The CSS:

.somethinghere {
color: #ffffff;
}

steveo11
03-13-2007, 10:58 PM
thanx for the info guys. i am sorry it took me so long to read it, I have been away for a while. But thanx alot again.