<!DOCTYPE html>
<html>
<head>
<title>CSS font property</title>
<style>
h1 {
font: italic small-caps bold 34px Georgia;
}
p.first {
font: italic small-caps bold 18px Helvetica, sans-serif;
}
p.second {
font: 18px Arial, Georgia, sans-serif;
}
p.third {
font: bold 1.2em 'Arial';
}
</style>
</head>
<body>
<h1>Topic heading</h1>
<p class="first">This is a paragraph.</p>
<p class="second">This is a paragraph.</p>
<p class="third">This is a paragraph.</p>
</body>
</html>