how to change text color using only html code example
Example 1: how to change text color using only html
<body>
<p style="color:#FF0000";>Red paragraph text</p>
</body>
Example 2: html how to change text color
<p style="color:red;">This paragraph is red.</p>