Multiple choice technology programming languages

Which sequence of HTML tags are correct?

  1. <html><head></head><body><title></<title></body></html>

  2. <html><head><title></<title></head><body></body></html>

  3. <html><head><title></<title><body></body></head></html>

  4. <html><title></<title><head></head><body></body></html>

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

HTML requires proper nesting: contains and . The contains , and contains page content. Option B correctly shows -> -> sequence with proper closing order. Other options have incorrect nesting like outside .