HTML: / Home / LineBreak

The LineBreak Element

The LineBreak element is <br />. It is called an "Empty" element because it has no End tag and cannot contain any text or other elements.

Notice that the LineBreak element ends with a space and a slash "/". This is true for all "Empty" elements.

The LineBreak element makes the next text or element to display its content starting on a new line.

  <!DOCTYPE html>
  <html lang="en">
  <body>
    <p>
      This is the paragraph text.<br />
      It is coded on more than one line so is normally formatted like this.
    </p>    
  </body>
  </html>
More about Files

<- Entities            Preformatted ->
10LineBreak