Web Tools Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu December 04, 2022 › #Element #Q&A

Which of the following element is responsible for making the text bold in HTML?

<pre>
<a>
<b>
<br>

Answer: (c) <b>

<b>Bold text example</b>
save
listen
AI Answer
1 Answer
Write Your Answer
  1. The <b> element has been around since HTML was first introduced in 1993 and remains one of the most commonly used tags today. It’s easy to use – all you have to do is wrap your desired content in opening (<b>) and closing (</b> ) tags like this:
    <html>
    <body>
    <p>
    <b>This sentence will be bold.</b>
    </ p>
    </body>
    </html>
    Reply Delete
    Share
loading
back
View All