/* Font-Family: It changes the font family of specified words, paragraphs, and sentences. */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
/* Font-Style: Used to Change the text to normal, oblique, and italics */
font-style: oblique;
/* Font-Size: It is used to modify the size of the displayed font */
font-size: larger;
/* Font-Weight: It is used to determine the weight of the font */
font-weight: normal;
/* Font-Variant: It is used to display font in normal or small-caps. */
font-variant: small-caps;
/* font: Shorthand Property */
font: font-style font-variant font-weight font-size font-family;