How do you color text | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do you color text

what tag

9th Dec 2016, 3:13 AM
Trevor
Trevor - avatar
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
9th Dec 2016, 4:37 AM
david
+ 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>
9th Dec 2016, 10:10 AM
Sandeep Chatterjee