+ 1
How to color text on html
5 Answers
+ 4
Its recomend to complete css Course
You can use color property of css to do this.
body{
color: red;
}
+ 2
Thank you
+ 2
<tag style="color: red;">
+ 1
<style>
body{
color : red;}
</style>
// instead of red you can use hexadecimal code or rgb value ...
Its best practice to use hexadecimal and rgb
than color name....
I hope it will help you
+ 1
Thanks for your answer