The CSS font property represents the font style of the text.
Example of Code
<style>
.example-CSS-Font-Property-paragraph{
font: italic small-caps bold 20px Georgia, Garamond, serif;
}
</style>
<p class="example-CSS-Font-Property-paragraph">The styles for this text has been specified with the 'font' shorthand property.</p>
Output
The styles for this text has been specified with the 'font' shorthand property.
