+ 1

How do you change the color of text

What do i do to change the color of the text

15th Sep 2017, 2:37 PM
RyGuy
2 Answers
+ 3
p{ color:white; } Use CSS
15th Sep 2017, 2:41 PM
Muhd Khairul Amirin
Muhd Khairul Amirin - avatar
+ 2
If in web, try CSS or style attribute. like: <HTML> <head> <style> p{ color:#FFFFFF; } </style> </head> <body> <p> White </p> <span style="color:#0000FF;"> Blue </span> </body> </HTML>
15th Sep 2017, 3:10 PM
Dragon Slayer Xavier
Dragon Slayer Xavier - avatar