<!DOCTYPE html>
<html>
<head>
<title>CSS font-style property</title>
<style>
p {
font-family: sans-serif;
font-size: 20px;
}
p.one {
font-style: normal;
}
p.two {
font-style: italic;
}
p.three {
font-style: oblique;
}
</style>
</head>
<body>
<p class="one">This text is normal style</p>
<p class="two">This text is italic style</p>
<p class="three">This text is oblique style</p>
</body>
</html>