HTML Tag Reference - HTML tag <strong>








This <strong> element causes text between its opening and closing tags to appear in boldface.

Browser compatibility

<strong> Yes Yes Yes Yes Yes

What's new in HTML5

None.

Global Attributes

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

Event Attributes

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

Default CSS Settings

strong { 
    font-weight: bold;
}




Example

A demo showing how to use <strong> tag.

<html>
<body>
     <p>
       This <strong>paragraph</strong> 
       has text rendered in normal and <!--from   w  w w.j ava 2 s. c om-->
       <strong>bold</strong>
       face.
     </p>
</body>
</html>

Click to view the demo