html font size bold code example
Example 1: css bold text
we can set text bold using css property named 'font-weight'
Syntax:
selector{
font-weight: bold;
}
Example 2: how to bold in html
#bold text:
<strong> this is bold </strong>
we can set text bold using css property named 'font-weight'
Syntax:
selector{
font-weight: bold;
}
#bold text:
<strong> this is bold </strong>