+ 3
Changing the color text
Hey! I would like to know how to change a color text from black to another color. Thanks anyway.
3 odpowiedzi
+ 4
use style attribute to change color - like shown below
<p style="color:red">Hello</p>
😊
+ 4
1. <p style="color:red;"</p>
2. CSS:
p{
color:red;
}
+ 2
Thank you guys for helping!