Multiple choice technology web technology

What is the correct HTML tag for inserting a line break?

  1. <lb/>

  2. <break/>


  3. <bk/>

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

The
tag is the standard HTML element for inserting line breaks within text. It's a self-closing tag that doesn't require a closing tag. The other options (, , ) are not valid HTML tags.

AI explanation

In HTML,
is the correct self-closing tag for inserting a line break within text (the XHTML-style self-closed form of
). There is no , , or tag defined in the HTML specification, so those are all invalid/made-up tags.