how to change color of text to red in html code example
Example 1: how to change font color in html
<p style="color: red;">This is paragraph in RED color</p>
Example 2: how to give color to text in html
HTML color to text
<body>
<p style="color:#FF0000";>Red paragraph text</p>
</body>