bolding text in css code example

Example 1: css bold text

.text {
	font-weight: bold;
}

Example 2: how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}

Example 3: how to bold in css

font-weight: bold;

Example 4: how to make bold text css

font-weight: normal|bold|bolder|lighter|number|initial|inherit;

font-weight: 700;

Example 5: Font weight css

/*

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 */

Tags:

Css Example