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-->
1HTML color to text
2<body>
3 <p style="color:#FF0000";>Red paragraph text</p>
4</body>
1<body>
2 <p style="color:#FF0000";>Roses are red</p>
3 <p style="color:#800080";>Violets are blue</p>
4</body>
1<p style="color: [name od color e.g. 'blue' or hex code e.g. '#ffffff']">
2 Hi, I'm coloured </p>