+ 2
For a word, I would use a <span> and then give that span the class that styles the word the way I want. You'll have to surround the word by the span tag every time you type it though:
<span class="word">Word!</span>
css:
.word {
color: green;
background: #ccc;
}