COLOR Property In CSS
color Property in CSS
color property Declares the color of the text.
Possible Value:
Valid color names, RGB values, hexidecimal notation. The predefined color names are: aqua black blue fuchsia gray green lime maroon navy olive purple red silver teal white yellow
Examplediv { color:green; }
div { color:rgb(0,255,0); }
div { color:#00FF00; }