html br tag

In the html <br> tag is used to specify single line break. which is an empty tag for a html page and it means you need not to put end tag.Many web developers some time will add a space and forward slash to <br> tag.If you need to blank lines or paragraph for html page use to <br> tag.

Syntax:

<html>
  <br>
</html>

Example Code

<!DOCTYPE HTML>
This is first line <br /> This is second line

Out Put:



This is first line
This is second line

In the above example <br> tag separate "This is first line and This is second line" are two lines.





Content