Sir Jane
5
Q:

how to bold text css inline

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
3
<html>
 <head>
   <title>Bold text</title>
 </head>
 <body>
   <p>Use the strong element to <strong>indicate strongly emphasized</strong> content.</p>
 </body>
</html>
12
<p style="font-weight:bold">Hey there</p>
2
we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}
5
<b> Bold Text </b>
2

New to Communities?

Join the community