Mike take a look at the following

Add this to your <head> of your Page
Code:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<title>Sample</title>
<style type="text/css"><!--
.sign {
font-style:italic;
}
--></style>
</head>
and In the <body> where you want to make the words italic, just use
Code:
<span class ="sign"> Your Text here </span>
look at the example below mate
Code:
<body>
<h1>Test</h1>
<p>
You can make text <span class="sign">italic</span> using CSS.
</p>
</body>
</html>