CSS font-weight coding
There are different font weight coding variables:-
p.normal {font-weight:normal;}
p.thick {font-weight:bold;} p.thicker {font-weight:800;} |
The font-weight property sets how thick or thin characters in text should be displayed.
normal = Defines normal characters. This is default
bold = Defines thick characters
bolder = Defines thicker characters
lighter = Defines lighter characters
800 = Defines from thin to thick characters. 400 is the same as normal, and 700 is the same as bold.
inherit = Specifies that the font weight should be inherited from the parent
element