+ 6
Can I make a text bold using css attributes?
Can I make a text bold using CSS attributes? I know how to use html tags <strong> and <b> to change the font style into boldface. I was wondering if there is way to do this via CSS?
2 Answers
+ 13
Yes you can.
p {
font-weight: bold;
}
+ 8
@Idrina Thank you!