Back to the 2019 paper

Module I: Introduction to Web Technologies & Architectures

20192m

Choose the correct HTML tag to make a text bold.

(i) <b>
(ii) <bold>
(iii) <bb>
(iv) <bld>

Worked SolutionAI Assisted

Correct Answer: (i) <b>

Explanation:

  • In HTML, the <b> tag (physical formatting tag) and the <strong> tag (semantic logical tag) are used to format text in bold.
  • Tags like <bold>, <bb>, and <bld> are not valid HTML elements.

Example:

<p>This is <b>bold text</b> using the b tag.</p>

Similar questions