0
How do you color text
what tag
2 Answers
+ 3
with css inline or an external file.
inline like <p style="color:red">text</p>
in an external css file like
p { color:red }
colors can be hex or named ex. red, blue, #FF0000, #0000FF
take the css course after html to learn more
+ 1
if you are asking tag then there is font tag you can use its attributes for colour etc. there is also attributes color in p h1 etc but you should use css for coloring. in css it is easy
<div style="color: red;"> this is red</div>