How to make the text bold between html tags?

by wilmer.lemke , in category: HTML & CSS , a year ago

How to make the text bold between html tags?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by lily , a year 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.

Related Threads:

How to remove html tags from an html string using regex?
How to strip html tags with php on textarea?
How to use flash message with html tags in laravel?
How to make legend text as clickable in d3.js?
How to find all the xpaths of the text in html code?
How to add color to some words in a text in html?