bold text w3c 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: make text bold with html
<b> You Text Here </b>
we can set text bold using css property named 'font-weight'
Syntax:
selector{
font-weight: bold;
}
<b> You Text Here </b>