+ 3
How do i change text color in html
Changing text color in html
3 Answers
+ 5
style="color:red;"
+ 1
Example is:
<p style = "color: blue"> I am happy today </p>
The {style = "color:blue"} adds color blue to the text
0
<p><font color="red">Hello</font> World</p>