+ 8
How can I make colored text paragraph on html?
This might be a really really simple question for html coders but I'm a little bit confused about it, because I'm new on HTML. Thanks for your help anyways.
4 Respuestas
+ 18
By using CSS, this is an inline example:
<p style = "color: red"> Lorem </p>
+ 7
Thanks maz :)
+ 7
or with an external CSS.
HTML:
<p>Example</p>
CSS:
p {
color: blue;
}
+ 4
friend anyone can ununderstan or be confused:)