CSS FONT-STYLE
CSS Font-Style is where you define if your font will be italic or not. Possible key terms are the following: italic, oblique, and normal.
Example
| body {font-style: italic} |
Possible Values
| Value | Description |
|---|---|
| normal | The browser displays a normal font |
| italic | The browser displays an italic font |
| oblique | The browser displays an oblique font |


