which of the following HTML tag is used for boldfacing the text?
A) <br>
B) <strong>
C) <tt>
D) <li>
Answers
Answer:
B) <strong>
mark brainliest
Answer: Option (b), <strong> is the correct option.
Concept:
An HTML tag is a markup language element that is used to specify the start and end of an HTML element in a document.
Given:
Which of the following HTML tag is used for boldfacing the text?
A) <br>
B) <strong>
C) <tt>
D) <li>
Find:
Find the correct option.
Solution:
Option (b) is correct.
The <strong> tag is used to indicate text that is significantly important. The content inside this tag is displayed in bold.
Option (a) is incorrect.
A single line break is inserted using the <br> tag. The br> tag is an empty tag, meaning it does not have an end tag.
Option (c) is incorrect.
The <tt> HTML element creates inline text that is shown in the default monospace font face of the user agent. To define teletype text, <tt> tag was used in HTML 4.
Option (d) is incorrect.
A list item is defined using the <li> tag. Inside ordered lists (<ol>), unordered lists (<ul>), and menu lists (<menu>), the <li> tag is utilised.