@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.