HTML - <strong> tag


Description

The HTML <strong> tag is used for emphasizing an important text.

Example

<!Doctype html>
<html>

   <head>
      <title>HTML strong Tag</title>
   </head>

   <body>
      <p>This is a <strong>strong</strong> text</p>
   </body>

</html>

This will produce the following result −

Global Attributes

This tag supports all the global attributes described in − HTML Attribute Reference

Event Attributes

This tag supports all the event attributes described in − HTML Events Reference

Browser Support

Chrome Firefox IE Opera Safari Android
Yes Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements