strong

The HTML <strong> element marks text with strong importance, seriousness, or urgency. Browsers usually render it in bold, but its meaning is more important than its default appearance.

What you will learn

Basic example

<p><strong>Warning:</strong> Save your work before closing this page.</p>

The warning remains important even if a stylesheet changes its appearance. Screen readers and other tools can also use the semantic information when presenting the page.

How it differs from similar elements

If you only need a heavier font weight for design, use CSS instead of adding a semantic element.

Related pages