change font color h1 html code example
Example 1: how to change h1 color in html
<h1 style="color: red;">
This is a Level1 Heading
</h1>
Example 2: how to change font color in html
<p style="color: red;">This is paragraph in RED color</p>
<h1 style="color: red;">
This is a Level1 Heading
</h1>
<p style="color: red;">This is paragraph in RED color</p>