Html help??


Acemace

 

Posted


Yeah I know its not game related but what better place can I find willing and eager computer geeks willing to share their knowledge?

Anyways I am writing on a blog site that allows html code but has no color options for font. So I assume the only way to change my font color is to use some kind of html code which I do not know how to do.

Anyone have a simple html code that will make my entire post one color of my choosing? Something where I can just change the color text or the color code to the color of my choosing. I tried to figure out how to do it , but in my search all I am finding is how to change specific parts of a page instead of just being able to have all of the post one color.


 

Posted

[ QUOTE ]
<font color="336699">

I am super amazing. The end.

</font>





Just change the 336699 to whatever hex color you want. See http://www.w3schools.com/Html/html_colors.asp for a list of values.

[/ QUOTE ]

just to add to this, EVERYTHING between <font> and </font> will be the same color.

If you want to have part of the text one color and another part a different collor ( like highlight) just open a tag for the first color... type your text that you want in that color, close the tag and open a different tag for the second color, type the text and close the tag....

ex: <font color="336699"> text 1 </font><font color="000000"> text 2 </font>

If my memory is good you can also use font color= "blue", or any other colors. the Hex code is simply to have different shades or color with no name ( more control over the color you get)

***Note that the "Blue" on firefox will not the be same as the "Blue" on IE... for some reason they don't use the same Hex code lol