Answers for "bold css w3schools"

CSS
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
1

bold in style tag css

1) Bold tag:
	<b> {HTML HERE} </b>

2) Strong tag:
	<strong> {HTML HERE} </strong>

3) CSS
.bold {
	font-weight: bold;
}
Posted by: Guest on November-26-2021

Browse Popular Code Answers by Language