📪Font Style

.font-italic

Sets the font style to italic.

CSS equivalent: font-style: italic;

Example usage:

<span class="font-italic">This text is italic.</span>

.font-normal

Sets the font style to normal.

CSS equivalent: font-style: normal;

Example usage:

<span class="font-normal">This text is normal.</span>

.font-oblique

Sets the font style to oblique.

CSS equivalent: font-style: oblique;

Example usage:

<span class="font-oblique">This text is oblique.</span>

Last updated