<!DOCTYPE html>
<html>
<head>
  <title>CSS Example</title>
  <style>
    body {
        color:#000000;
        background-color:#ffffff;
        font-family:arial, verdana, sans-serif; 
        font-size:12px;}

    p.normal  {font-style:normal;}
    p.italic  {font-style:italic;}
    p.oblique {font-style:oblique;}
</style>
</head>

<body>
<h1>font-style Property</h1>

<p class="normal">This is a <b>normal</b> font</p>
<p class="italic">This is an <b>italic</b> font</p>
<p class="oblique">This is an <b>oblique</b> font</p>
 
</body>
</html>