<html>
<head>
<style>
/* Default CSS Values */
i {
font-style: italic;
}
</style>
</head>
<body>
<p>An i element is displayed like this:</p>
<i>Some italic text</i>
<p>A customized i element (changed display):</p>
<i style="font-style:normal;">Some normal text</i>
</body>
</html>