How do i use HTML color codes?

Depends on where you want the color.

E.g., you can change the background of the entire page on the <BODY> tag:

<BODY bgcolor="#727272"> <!-- dark grey -->

You can change the color of your text in the <FONT> tag:

<FONT color="#EE0000">This text should be red</FONT>

Or you can make similar changes in CSS styles.

(Like it or not, I don't think it works with the British spelling, "colour")
 
it's HTML bro keep it simple. <font color="green">Your green text goes here.</font>

okay otherwise you can use your hex the same way

<font color="#008000">Your green text goes here.</font>
 
Back
Top