Answers for "how to create a text with color in html"

6

how to give color to text in html

HTML color to text
<body>
  <p style="color:#FF0000";>Red paragraph text</p>
</body>
Posted by: Guest on December-01-2020
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
1

changing text colour in html

<body>
  <p style="color:#FF0000";>Roses are red</p>
  <p style="color:#800080";>Violets are blue</p>
</body>
Posted by: Guest on June-29-2021
1

html text color tag

<p style="color:lime;">lime</p>
Posted by: Guest on April-05-2021

Code answers related to "how to create a text with color in html"

Browse Popular Code Answers by Language