Home

Published

- 1 min read

font weight numbers

img of font weight numbers

The solution for this is noted below

font weight numbers

Solution

   /*
Thin, Hairline				100
Extra Light, Ultra Light	200
Light						300
Normal, Regular				400
Medium						500
Semi Bold, 					600
Bold						700
Extra Bold, Ultra Bold		800
Black, Heavy				900
*/

.myclass {
 font-weight: normal; /* 400 */
}

.myOtherClass {
 font-weight: 700;  /* Bold */
}

/* You can Use this List to see all the different Types */
/* Make sure you have the Font Files Downloaded and Embedded */

Press Like if you like my post :)

Try other methods by searching on the site. That is if this doesn’t work