Answer:
The font-style property allows you to make text appear italicized (i.e. sloped, or slanted).
em {
font-style: italic;
}
Step-by-step explanation:
This property accepts one of three possible values: normal, italic, and oblique.
If a given font family has an italic or oblique face embedded, the browser will select that face. If no italic or oblique face is available, the browser will mimic the sloping effect. If italic is defined and there is no italic face available, the browser will look for an oblique face before it tries to mimic the italic. The same applies to oblique; it too will look first for an italic face.
To prevent the browser from adding a mimicked, or synthesized, version of the italic or oblique face, you may use the font-synthesis property (if supported).