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.

Supported Global attributes

Global attributes may be applied on all elements, although some elements may have no effect on them.

<accesskey>, <class>, <contenteditable>, <contextmenu>, <data-*>, <dir>, <draggable>, <dropzone>, <hidden>, <id>, <lang>, <spellcheck>, <style>, <tabindex>, <title>, <translate>.

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.