Open In App

How to add line break using <br> Tag in HTML?

Last Updated : 17 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

The <br> tag is used to create a line break in HTML. It allows you to break text into a new line without starting a new paragraph or block. This is helpful when you need to format text in a specific way, like in poems or addresses. For adding a line break, simply insert the <br> tag where the text should continue on the next line.

Using the <br> tag is a simple and effective method. To insert a line break, simply place the <br> tag at the point in your content where you want the text to start on a new line.

Note: No closing tag is required i.e. the <br> tag is self-closing.

HTML
<!DOCTYPE html>
<html>

<body>
    <p>
        Address: <br>
        Vipul Jahla<br>
        123 Main Street<br>
        Noida, Uttar Prades<br>
        India<br>
    </p>
</body>

</html>


Related article:


Next Article

Similar Reads