Using the i tag:
or using a span and css:
Code:
<p>some other text <span class="italic">in</span> this paragraph.</p>
with the css:
Code:
.italic {
font-style: italic
}
I prefer the simple tag, as it's nicer to work with distinct elements when using regex and the rest - you never know what things will look like later on.