Horje
How to create HTML <b> and <strong> Elements

The HTML <b> element defines bold text, without any extra importance.


Example of HTML <b> and <strong> Elements

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

<p><b>This text is bold.</b></p>

Full Example of HTML <b> and <strong> Elements

First one is This text is normal. Second one is This text is bold.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

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

<p><b>This text is bold.</b></p>

</body>
</html>

Output should be:

Full Example of HTML <b> and <strong> Elements





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


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