HTML <strong> Tag
The <strong> tag is used to show text that is very important. The text inside is usually shown in bold.
Tip: Utilize the <b> tag to indicate text in bold without any added significance!
The <strong> tag is used to show text that is very important. The text inside is usually shown in bold.
Tip: Utilize the <b> tag to indicate text in bold without any added significance!
<!DOCTYPE html>
<html>
<body>
<h1>The strong element</h1>
<p>This text is normal.</p>
<p>
<strong>This text is important!</strong>
</p>
</body>
</html>