How to make text bold in HTML
Sometimes it is nice to mark text as bold to indicate its importance. This can be done by adding a b-tag around your text like this…
<b>this is bold</b>
Often you will use the b-tag inside another HTML tag. For example inside a paragraph which is indicated here…
<p>This is a tutorial about making <b>bold text with HTML</a>. I hope you find it useful.</p>
The output of this HTML would be…
This is a tutorial about making bold text with HTML. I hope you find it useful.
Written by: Michael from Beginnrtuts.com 25-08-2022 Written in: HTML tutorials