How do I make text bold in HTML?
css, html
Solution
use `<strong>` or `<b>` tag
also, you can try with css `<span style="font-weight:bold">text</span>`
Problem
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?