Colors for html font/text can be set using the css tag "color". It accepts values in three formats a) Color name b) rgb(x,y,z) where x,y,z is red,green,blue c) #xxyyz where xx,yy,zz points to hexadecimal(hex) values of red,green,blue
Examples
The following examples will show on how to set color for a font or text in html using css.
<div style="color: green;"> color name </div> <div style="color: rgb(125,125,125);"> color using rgb(x,y,z) </div> <div style="color: #343434;"> color using hex values</div>