font weight css

CSS
font-weight: 200; /*100 200 300 400 500 600 700 800 900 
					Defines from thin to thick characters. 
					400 is the same as normal, 
					and 700 is the same as bold*//* key word "lighter", "normal", "bold", or "bolder" */ 
.normal {
  font-weight: normal;
}

/* number between 100 and 900 */
.heavy {
  font-weight: 900;
}
  
 font-weight: bold;we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}p.normal {
  font-weight: normal;
}


p.thick {
  font-weight: bold;
}


 p.thicker {
  font-weight: 900;
}.text {
	font-weight: bold;
}
Source

Also in CSS: