+ 1
How do you change the color of text
What do i do to change the color of the text
2 Answers
+ 3
p{
color:white;
}
Use CSS
+ 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>