The HTML Line break tag <br> is used to add a line break in web page. You can use the <br> tag to add line break in your web page. Its very easy you just have to write <br> tag in your html page. While displaying the web page browser will add a line break where it finds <br> tag.
This tag is used to add a line break in HTML page. In this example we will show you how to use the <br> tag.
It is a html tag, It breaks line. The break line (<br>) is a singular tag. It breaks the text and starts from a new line.
Code :
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>HTML Line break example</title> </head> <body> <p>HTML is a markup language. It is used for designing not for development. HTML stands for Hypertext Markup Language. </p> <p>HTML is a markup language. <br/>It is used for designing not for development. <br/>HTML stands for Hypertext Markup Language. </p> </body> </html> |

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.