HTML
Line Break

<Line Break> tag provides an additional structure to HTML document. It is used to group and apply styles to inline elements.

Line Break Example

Below example will demonstrate the basic architecture of HTML Line Break.

<!doctype html>  
<html>
 
    <head> 
        <title>Line Break</title> 
    </head>
  
    <body> 
        Section One. <br>
        Section Two
    </body>

</html>