Font Properties: ================ 1) font-family: =============== ==> type of font default font : Times New Roman ==> font-family is the property, we can use to change the type of the font to apply. Syntax: font-family : value Recommended font-families are: Segoe UI Sans-serif Arial Narrow Tahoma Gill sans Impact Geneva Georgia Arial Verdana Cursive Helvetica Font Properties

Font Styles

Our courses are strategically and innovatively designed, blending both theoretical and practical teaching methods. The modules are carefully chosen to ensure the course is as industry- relevant as possible. The courses are concise yet thorough and students can kick start their careers at the earliest possible.

=============================== 2) font-size: ============= to change the size of the text (increase/decrease|), we need font-size property. Syntax: font-size : number; Units: px, %, em (16px), pt (1/72th of inch), vh (view port height), vw (view port width) ex: font-size : 70px | 7em | 50% | 72pt | 10vh | 20vw; Font Properties

Font Styles

Our courses are strategically and innovatively designed, blending both theoretical and practical teaching methods. The modules are carefully chosen to ensure the course is as industry- relevant as possible. The courses are concise yet thorough and students can kick start their careers at the earliest possible.

======================================== 3) font-weight: =============== Syntax: font-weight : normal | bold | bolder |lighter | number ====================================== 4) font-style: ============== ==> to define the text with italic format, we can use "font-style" Syntax: font-style : normal | italic; =================================== 5) font-variant: ================ use to define the small-caps text Syntax: font-variant : normal | small-caps ================================= 6) font: ======= ==> shorthand property which we can to define all font-properties at a time to html element. Syntax: font : font-style font-variant font-weight font-size font-family