Font Style

The CSS font-style property can be used to change the text font of a html page. The font-style values are: normal, italic, oblique.

Font Style properties are:

  • font-style: normal;
  • font-style: italic;
  • font-style: oblique;

Font Style example:

<html>
<head>

</head>
<body>

Normal example of css font-style property.

Italic example of css font-style property.

Oblique example of css font-style property.

</body> </html>

Font Style result:



Normal example of css font-style property.

Italic example of css font-style property.

Oblique example of css font-style property.