<br />


<br /> tag will be used to break the content to next line.

Syntax:

<br />

Example:

<html> <head> <title>HTML Tutorial</title> </head> <body> <p> This example will let you know how to use &lt;br /&gt; tag.<br /> One br given before this line.<br /> <br /> <br /> Three br's given before this line. </p> </body> </html>

Output:

This example will let you know how to use <br /> tag.
One br given before this line.


Three br's given before this line.