Warning Text Functionality
A warning or special note can be indicated by using the red class. Any element text with the red class will be colored red, bolded, and italicized.
This is a warning paragraph!
This is a regular paragraph with a warning inside it thanks to a span.
Relevant HTML
<p class="red">WARNING OR NOTE!</p>
Relevant CSS
.red
{
color:#ff0000;
font-style:italic;
font-weight:bold;
}