<strong> : Strong Importance element

Introduction

The <strong> element in HTML is used to denote text with strong importance, typically rendered as bold by browsers. It indicates that the enclosed text is of greater importance or relevance compared to surrounding text.

Here’s an example of how you might use the <strong> element:

Output:

In this example, the text “very important” is wrapped in the <strong> element to indicate its strong importance. Browsers typically render this text in a bold font weight by default, although the actual rendering may vary based on the browser’s default styles or any custom styles applied to the page.

Leave a Comment