CSS Font Style
HTML
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<h4>This is an oblique font</h4>
<p>This is an italic font</p>
</body>
CSS
h4{ font-style: oblique; }
p { font-style: italic; }
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<h4>This is an oblique font</h4>
<p>This is an italic font</p>
</body>
h4{ font-style: oblique; }
p { font-style: italic; }