View video tutorial

HTML <strong> Tag

HTML

The <strong> tag defines the text importance.

HTML <strong> Tag


The <strong> element specifies the strong importance, seriousness, or urgency of its contents.

It usually displays the contents in bold type.

<strong> vs <b>: The <strong> element is for content which is of greater importance, while the <b> element is used to draw attention, not necessarily be more important.

<strong> vs <em>: The <strong> is used to give portions of a sentence added importance, while <em> is used to change the internal meaning of a sentence.

Learning with HTML Editor "Try it Now"

You can edit the HTML code and view the result using online editor.

Example

<p>This is normal text.</p>
<p><strong>This is strong text or important text.</strong></p>
Try it Now »

Click on the "Try it Now" button to see how it works.