Questions
Tags
I'm trying to make some text bold using HTML, but I'm struggling to get it to work.
Here's what I'm trying:
Some <bold>text</bold> that I want emboldened.
Could someone tell me what I'm doing wrong?
This question is related to css html
css
html
use <strong> or <b> tag
<strong>
<b>
also, you can try with css <span style="font-weight:bold">text</span>
<span style="font-weight:bold">text</span>