It's easy to change the font color with one simple CSS style property.
In this how to, you'll learn how to change the font color on a paragraph tag. But you can use the same style property to change the fond color on any tag that surrounds text, including the <body> tag.
Difficulty: Easy
Time Required: 2 minutes
Here's How:
- Add the style property to the tag:
<p style="">
- Place the color style property in the attribute value:
<p style="color:">
- Then add your color to the style:
<p style="color:red;">
- Type your text inside the paragraph.
- Close the paragraph tag:
</p>

