Advertisement
❮ Previous: <span> Next: <style> ❯

<strong>

HTML <strong> (Strong Emphasis) Tag

Example

<p>This is <strong>important</strong> text</p>

Try this code ❯

Meaning

The <strong> inline element specifes strongly emphasized text. It usually is rendered in a bold typeface.

The <strong> element is a phrasing-level element. It must not contain block-level elements, but it can contain other phrasing-level elements.

Notes:

Version: HTML 2, 3.2, 4, 4.01, 5


Standard Syntax

<strong>...</strong>


Advertisement

Global Attributes

The <strong> element also supports the Global Attributes in HTML.


Event Attributes

The <strong> element also supports the Event Attributes in HTML.


By Default CSS Value(s)

Most of the browsers will display the <strong> element with the following by default value(s)

strong { 
  font-weight: bold;
}

Related Tags:

<a>,
<abbr>,
<b>,
<bdi>,
<bdo>,
<br>,
<cite>,
<code>,
<data>,
<dfn>,
<em>,
<i>,
<kbd>,
<mark>,
<q>,
<rp>,
<rt>,
<ruby>,
<s>,
<samp>,
<small>,
<span>,
<sub>,
<sup>,
<time>,
<u>,
<var> and
<wbr>

❮ Previous: <span> Next: <style> ❯
Advertisement