Home » HTML » HTML Basic » Question
  1. Which of the following markup is correct?
    i. <b><i>is in error as tags cross</b></i>
    ii. <b><i>is not since tags nest</i></b>
    1. ii
    2. i
    3. Neither i nor ii
    4. i and ii
    5. None of these
Correct Option: A

In markup, tags can be nested. The first tag who is going to nest other tag must end after that nested tag which means if <i> tag is nested in <b> tag then <b> must be closed after closing of the <i> tag.



Your comments will be displayed only after manual approval.