Style Specific Text Using CSS
Example: Change the style of a particular word or paragraph using CSS that can be used throughout your site.
In HTML:
<span class="styleText">Your Text Here.</span>
In CSS:
.styleText {color:#a23333; font-size:12px; font-weight:bold; text-decoration:underline;}



