If you need underline, you can add the following in your stylesheet:
Code:
.under {
text-decoration: underline;
}
In your file you need to mark the words you want underlined with for example:
Code:
<p>The word <span class="under">underline</span> is underlined.</p>