Answers for "bold text inline css html"

CSS
10

how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Posted by: Guest on November-18-2020
4

how to bold text css inline

<p style="font-weight:bold">Hey there</p>
Posted by: Guest on August-10-2020

Browse Popular Code Answers by Language