Answers for "bolding text in css"

CSS
72

css bold text

.text {
	font-weight: bold;
}
Posted by: Guest on February-22-2020
10

how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Posted by: Guest on November-18-2020
3

how to make bold text css

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

font-weight: 700;
Posted by: Guest on December-09-2020
1

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 */
Posted by: Guest on December-01-2020
0

css bold text

.mytext {
	font-weight: bold;
}
Posted by: Guest on August-09-2021

Browse Popular Code Answers by Language