Answers for "how to make a tag bold in css"

CSS
85

how to make text bold in css

.text {
	font-weight: bold;
}
Posted by: Guest on February-22-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