Answers for "html heading color"

3

how to change h1 color in html

<h1 style="color: red;">
  This is a Level1 Heading
</h1>
Posted by: Guest on February-25-2021
2

html color text

<!-- <p style="color:enterColor">insertContentHere</p>-->

<p style="color:#0000ff">This text is blue.</p>
<p style="color:rgb(106, 90, 203)">This text is violet.</p>
<p style="color:red">This text is red.</p>
Posted by: Guest on June-14-2021

Browse Popular Code Answers by Language