<!-- If you want a color on a specific text, use this : --><pstyle="color:---"> Text <p><!-- Here an exemple if you want a blue text--><pstlye="color:blue"> Romuald <p><!-- If you want a specific class in a color, use css, its better-->
<!DOCTYPE html><html><head><style>body {background-color: powderblue;}
h1 {color: blue;}
p {color: red;}
</style></head><body><h1>This is a
heading</h1><p>This is a paragraph.</p></body></html>