HTML Bold Formatting Code For Website - Learn About Website | DaddyFile

0

HTML Bold Formatting Explain

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



Html Code:

<!DOCTYPE html>
<html>
<body>

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

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

</body>
</html>



Html Code Result:

This text is normal.
This text is bold.

Post a Comment

 
Top