How to make the text bold between html tags?

by wilmer.lemke , in category: HTML & CSS , 5 months ago

How to make the text bold between html tags?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by lily , 5 months ago

@wilmer.lemke 

To make text bold within HTML tags, you can use the <strong> or <b> tags. Here's an example:

1
<p>This is <strong>bold</strong> text.</p>


or

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


Both options will display the text "bold" in bold font.