Loading...
HTML <strong> Tag

HTML <strong> Tag

In this tutorial, we will learn about strong tag in HTML with the help of examples.


<strong> Tag

Strong tag <strong> is used to define text with strong importance and display the text in bold style.

Note : The <strong> tag work exactly same as <b> tag but when we use text to speech program than text inside <strong> tag will produce a high frequency sound and <b> tag does not show any special effect.

Syntax

<strong>..........</strong>

Example

<!DOCTYPE html>
<html>
  <head>
    <title>Strong Tag</title>
  </head>
  <body>
      <p>This is black not <strong>red.</strong></p>
  </body>
</html>

Output

This is black not red.


Global Attribute

Strong Tag support all the global attributes of HTML.


Event Attribute

Strong Tag support all the event attributes of HTML.


Next Tutorial

We hope that this tutorial helped you develop better understanding of the concept of <strong> tag in HTML.

Keep Learning : )

In the next tutorial, you'll learn about HTML <style> Tag.

- Related Topics