Answers for "how to put color on text in html"

1

how to change font color in html

<p style="color: red;">This is paragraph in RED color</p>
Posted by: Guest on February-26-2021
2

html color text

<!-- <p style="color:enterColor">insertContentHere</p>-->

<p style="color:#0000ff">This text is blue.</p>
<p style="color:rgb(106, 90, 203)">This text is violet.</p>
<p style="color:red">This text is red.</p>
Posted by: Guest on June-14-2021

Code answers related to "how to put color on text in html"

Browse Popular Code Answers by Language