Multiple choice xhtml

What is a correct XHTML tag for a line break?


  1. <break/>



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

XHTML requires all elements to be properly closed. For empty elements like line breaks, this means using the self-closing syntax with a space before the slash:
. Option D is correct. The traditional HTML
is invalid in XHTML.