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-->
1text-align: center, right, left, justify, start, end;
2font-weight: lighter, 100, normal, 400, bold, 700, bolder, 900;
3text-decoration: wavy, dashed, dotted, double, solid, underline, line-through, overline;
4text-decoration: underline red;
5line-height: normal;
6letter-spacing: 2;
7font-size: 100px;
8font-family: 'Courier New', Courier, monospace;
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>