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<body>
2 <p style="color:#FF0000";>Roses are red</p>
3 <p style="color:#800080";>Violets are blue</p>
4</body>