It's easy to change the font color with one simple CSS style property.
In this article, you'll learn how to change the font color on a paragraph tag. But you can use the same style property to change the font color on any tag that surrounds text, including the <body> tag.
Difficulty: Easy
Time Required: 2 minutes
Here's How:
Add the style attribute 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>The final HTML reads:
<p style="color:red;">This text is red.</p>

