HTML - <strong> tag



Introduction to <string> Tag

The HTML <strong> tag is used to highlight text that has greater importance, typically displaying the text in bold.

When witting content within a paragraph or any element, we can use the <string> tag to make important terms bold.

Syntax

Following is the syntax of <strong> tag −

<strong>...</strong>

Attributes

The HTML <strong> tag supports Global and Event attributes.

Example: Creating <strong> Element

In the following example, we demonstrate the <strong> tag. This HTML code creates a webpage with paragraphs, using the <strong> tag to emphasize and bold specific text.

<!DOCTYPE html>
<html>
<body>
   <p>This is normal paragraph</p>
   <strong>
      This is strong paragraph! 
   </strong>
   <p> 
      I am <strong> tutorialspoint </strong>
   </p>
</body>
</html>

Example: Styling <strong> Element

Considering the following example, we demonstrate the use of the <strong> tag along with CSS properties. This HTML code creates a webpage with paragraphs, styling strong text as italic and green when using the "tp" class.

<!DOCTYPE html>
<html>
<head>
   <style>
      strong {
         font-style: italic;
      }
      .tp {
         color: green;
      }
   </style>
</head>
<body>
   <p>This is normal paragraph</p>
   <strong>
      This is strong paragraph!
   </strong>
   <p>
      I am <strong class="tp"> tutorialspoint </strong>
   </p>
</body>
</html>

Supported Browsers

Tag Chrome Edge Firefox Safari Opera
strong Yes Yes Yes Yes Yes
html_tags_reference.htm
Advertisements