How to add line break using <br> Tag in HTML? Last Updated : 17 Apr, 2025 Summarize Comments Improve Suggest changes Share 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:How to add line break in CSS Comment More infoAdvertise with us Next Article How to Break Line Without using Tag in HTML / CSS? P pankajbind Follow Improve Article Tags : HTML HTML-Questions Similar Reads How to Break Line Without using <br> Tag in HTML / CSS? Breaking lines in HTML without <br> tags can be achieved using block-level elements such as <div> or <p> combined with CSS properties like display: block; or display: inline-block; and others. These elements naturally wrap text or content, facilitating clean and structured layout d 2 min read How to Add a Non-breaking Space using   in HTML? In HTML, the non-breaking space character, represented by , is used to control the spacing and formatting of text content. Unlike regular spaces, which browsers typically collapse into a single space, ensures that multiple spaces are preserved. This feature is essential for main 2 min read How to set a single line break in HTML5 ? In this article, we will add a single line break using the <br> tag. It s used to give the single line break. It is the empty tag so it does not contain end tag. Syntax: <br> Example 1: This example uses <br> tag to break the line. html <!DOCTYPE html> <html> <head 1 min read How to add line breaks to an HTML textarea? Line breaks in an HTML textarea refer to the inclusion of newline characters (\n) that separate lines of text within the textarea. When users press Enter or Return, a line break is created, making text easier to read and format within the form element.The way of implementing line breaks differs from 2 min read How to define a possible line-break using HTML? To define a possible line-break in HTML use a <wbr> element. It stands for word break opportunity and is used to define the position within the text which is treated as a line break by the browser. It is mostly used when the used word is too long and there are chances that the browser may brea 2 min read How to indent text in HTML by using CSS ? Text indentation in an HTML document sets the length of empty white space before lines of text in a block, typically marking the beginning of a paragraph. Proper indentation can enhance the readability and layout of your web content. Here, we will explore several common approaches for text indentati 2 min read Like