1<!-- If you want a color on a specific text, use this : -->
2<p style="color:---"> Text <p>
3
4<!-- Here an exemple if you want a blue text-->
5<p stlye="color:blue"> Romuald <p>
6
7<!-- If you want a specific class in a color, use css, its better-->
1<!-- <p style="color:enterColor">insertContentHere</p>-->
2
3<p style="color:#0000ff">This text is blue.</p>
4<p style="color:rgb(106, 90, 203)">This text is violet.</p>
5<p style="color:red">This text is red.</p>
1HTML color to text
2<body>
3 <p style="color:#FF0000";>Red paragraph text</p>
4</body>
1<body>
2 <!-- style color (hex color) + the text -->
3 <h1 style ="color: #000000; "> Apples <em>is a tech company</em></h1>
4</body>
1<p style="color: #ffffff;">Lorem ipsum...</p> <!-- text -->
2<p style="background-color: red;">Lorem ipsum...</p> <!-- background -->
3<h1 style="border: 2px solid #00ff00;">Lorem ipsum...</h1> <!-- border -->
4
5<!-- 3 ways to define colors -->
6<h1 style="background-color: rgb(255, 99, 71);">Lorem ipsum...</h1>
7<h1 style="background-color: #ff6347;">Lorem ipsum...</h1>
8<h1 style="background-color: hsl(9, 100%, 64%);">Lorem ipsum...</h1>