CBSE Class 10 Computer Applications Question 51 of 176

HTML I — Basic HTML Elements — Question 49

Back to all questions
49
Question

Question 49

Which one is correct ?

  1. <b>Click Here<b>
  2. <strong>Click Here<strong>
  3. <b>Click Here</b>
  4. </strong>Click Here</strong>
Answer

<b>Click Here</b>

Reason — HTML tags are written in angle brackets ( <> ). Container tags require pair tags. The ending tag is similar to that of the starting tag except that it begins with a slash ( / ) symbol.

In option 1 and 2, the ending tag doesn't have a slash symbol. In option 4, the starting tag has a slash symbol which is incorrect. Thus, option 3, <b>Click Here</b> is correct.