|
Okay, to change your default text color in your
HTML page, you will need to find your body tag. Now, look for
the phrase
text="" somewhere after the word BODY. You may have something
like this:
<BODY text="black">
You may also see a weird number/letter combination, like this:
<BODY text="#000000">
Of course, you may not see either of these, or you may be creating
the page from scratch. If you don't have the extra command yet,
add it to your BODY tag like one of the examples above. If you
have other commands, add this one onto the end, leaving a space
after the previous command, like this:
<BODY bgcolor="blue" text="black">
Now, if you'd like to change the color, replace
the black between the quote marks with a color name or hex code.
For a list of
the colour hex codes, click here.
So, if you want to change the text color to red, you could
use one of the following:
Using a color name:
<BODY text="red">
Or using a hex code (preferred):
<BODY text="#FF0000">
|