html text color change code example

Example 1: change highlight color html

::-moz-selection { /* Code for Firefox */
  color: red;
  background: yellow;
}

::selection {
  color: red;
  background: yellow;
}

Example 2: how to give color to text in html

HTML color to text
<body>
  <p style="color:#FF0000";>Red paragraph text</p>
</body>

Example 3: html how to change text color

<p style="color:red;">This paragraph is red.</p>

Example 4: change text color in html butn

<body>
  <p style="color:#FF0000";>Red paragraph text</p>
</body>

Tags:

Html Example