text color code example
Example 1: text color html
<p style="color:---"> Text <p>
<p stlye="color:blue"> Romuald <p>
Example 2: make text blue html
<p style="color:blue;">This paragraph is blue.</p>
Example 3: css text
text-align: center, right, left, justify, start, end;
font-weight: lighter, 100, normal, 400, bold, 700, bolder, 900;
text-decoration: wavy, dashed, dotted, double, solid, underline, line-through, overline;
text-decoration: underline red;
line-height: normal;
letter-spacing: 2;
font-size: 100px;
font-family: 'Courier New', Courier, monospace;
Example 4: text color css
.class {
color: white;
}
Example 5: css change text color
p{
color: White;
}
Example 6: text color css
.YourClass {
color: #ff0000;
}