Horje
How to create HTML <strong> Elements

The HTML <strong> element defines text with strong importance. The content inside is typically displayed in bold.


Example of HTML <strong> Elements

<p>This text is normal.</p> <p><strong>This text is important!</strong></p>
<p>This text is normal.</p>

<p><strong>This text is important!</strong></p>

Full Example of HTML <strong> Elements

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<p>This text is normal.</p>

<p><strong>This text is important!</strong></p>

</body>
</html>

Output should be:

Full Example of HTML <strong> Elements





Category:
Web Tutorial
Sub Category:
HTML Formatting
Uploaded by:
Admin


Read Article
https://horje.com/learn/1434/reference