<strong>


<strong> tag will be used when we need to represent some important text.

Syntax:

<strong>Important text here...</strong>

Example:

<html> <head> <title>HTML Tutorial</title> </head> <body> <p> We will highlight <strong>important text</strong> by using strong tag. </p> </body> </html>

Output:

We will highlight important text by using strong tag.