how to make text bold with css code example
Example 1: css text bold
font-weight: bold;
Example 2: change the weight of a bold font css
p {
font-weight: normal;
}
a {
font-weight: bold;
}
p.thick {
font-weight: 780;
}
Example 3: css bold text
we can set text bold using css property named 'font-weight'
Syntax:
selector{
font-weight: bold;
}