Summary -
In this topic, we described about the <strong> tag along with detailed example.
Strong importance text in HTML document. Strong text is used to display the text as Strong with added semantic "strong" importance. Strong text uses <strong> tag.
Any text in between <strong >..</strong> displays as Strong. <strong> element is nested element.
The <strong> tag used to represent the strong importance, seriousness or urgency of its contents. The <strong> tag defines strong emphasized text in HTML 4.01, but in HTML5 it defines important text.
Syntax -
<strong>.. text here.. </strong>
Example -
<!DOCTYPE html>
<html>
<head>
<title>Strong text example.. </title>
</head>
<body>
<p>This is <strong> Strong </strong> text</p>
</body>
</html>
Output -
This is Strong text.