Line Break <br> tag

The <br> tag uses for line break. When you want to write text in new line, without skipping a blank line so you can use <br> tag. It breaks the line and move text to next line. <br> is an example of one of the empty tags. Example


<html>
    <head></head>
    <body>
      This is my first webpage. <br>HTML very easy to learn. <br>Hello World.
    </body>
</html>
Output

This is my first webpage.
HTML very easy to learn.
Hello World.