how to stop bold font css code example
Example 1: css bold text
.text {
font-weight: bold;
}
Example 2: how to bold in html
#bold text:
<strong> this is bold </strong>
.text {
font-weight: bold;
}
#bold text:
<strong> this is bold </strong>