0
How do i put a colored text in paragraph??
I need help with how to put a colored text tag?? Can someone help me? I am making a project...
3 Réponses
+ 1
<p style="color:red;"> blabla</p>
0
<p>This is <span style="color: green;">green</span>text</p>
0
Define a class in css for paragraphs..
P.color{
Color: red;
}
Then use this class in a p tag
<p class="color"> this text will be red</p>