html text red code example
Example 1: text color html
<!-- If you want a color on a specific text, use this : -->
<p style="color:---"> Text <p>
<!-- Here an exemple if you want a blue text-->
<p stlye="color:blue"> Romuald <p>
<!-- If you want a specific class in a color, use css, its better-->
Example 2: html font white text with black border
h1 {
color: yellow;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
<h1>Hello World</h1>
Example 3: html font size
<span style="font-size:20px;"></span>
Example 4: text outline html
.stroke
{
color: white;
text-shadow:
-1px -1px 0
1px -1px 0
-1px 1px 0
1px 1px 0
}
Example 5: html text color tag
<p style="color:lime;">lime</p>