curriculum/challenges/english/blocks/top-working-with-text/637f4e6672c65bc8e73dfe29.md
The <strong> element makes text bold. It also semantically marks text as important; this affects tools, like screen readers, that users with visual impairments will rely on to use your website. The tone of voice on some screen readers will change to communicate the importance of the text within a strong element. To define a strong element you wrap text content in a <strong> tag.
You can use strong on its own:
But you will probably find yourself using the strong element much more in combination with other text elements, like this:
Sometimes you will want to make text bold without giving it an important meaning. You’ll learn how to do that in the CSS lessons later in the curriculum.
Watch Kevin Powell’s HTML Bold and Italic Text Video above.
What element should you use to make text bold and important?
<em>This is an important message</em>
<h1>This is an important message</h1>
<strong>This is an important message</strong>
3