HTML Tag







googletag.cmd.push(function() { googletag.display('div-gpt-ad-1422003450156-2'); });




HTML <strong> Tag



Previous
Complete HTML Reference
Next



Example


Format text in a document:



<strong>Strong text</strong>

Try it Yourself »



Definition and Usage


The <strong> tag is a phrase tag. It defines important text.


Tip: This tag is not deprecated, but it is possible to achieve richer effect with CSS.


All phrase tags:































Tag Description
<em> Renders as emphasized text
<strong> Defines important text
<code> Defines a piece of computer code
<samp> Defines sample output from a computer program
<kbd> Defines keyboard input
<var> Defines a variable



Browser Support



















Element
<strong> Yes Yes Yes Yes Yes



Differences Between HTML 4.01 and HTML5


In HTML 4.01, the <strong> tag defines strong emphasized text, but in HTML5
it defines important text.









googletag.cmd.push(function() { googletag.display('div-gpt-ad-1493883843099-0'); });






Global Attributes


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




Event Attributes


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




Related Pages


HTML tutorial: HTML Text Formatting


HTML DOM reference: Strong Object




Default CSS Settings


Most browsers will display the <strong> element with the following default values:



Example



strong {
    font-weight: bold;
}

Try it Yourself »




Previous
Complete HTML Reference
Next

Popular posts from this blog

Python Lists

Aion

JavaScript Array Iteration Methods