
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to insert a single line break in HTML?
Use the <br> tag to insert a single line break in HTML. You can try to run the following code to insert a line break using the <br> tag −
Example
<!DOCTYPE html> <html> <head> <title>HTML br Tag</title> </head> <body> <p>This is before the line break<br /> and this after the line break.</p> </body> </html>
- Related Articles
- How do we add a single-line input field in HTML?
- How to create a line break with JavaScript?
- How to add a line break in an android textView?
- How to define a possible line-break using HTML5?
- How to use a line break in array values in JavaScript?
- How to insert multiple rows in a table using a single INSERT command in program?
- How to insert an array of values in a MySQL table with a single INSERT?
- How to add a line break in an Android TextView using Kotlin?
- How to add line break for UILabel in iOS/iPhone?
- How to Copy Cell without New Line Break in Excel?
- How to change collation to utf8_bin in a single line?
- How to Transpose a matrix in Single line in Python?
- How to Insert Hyperlink in HTML Page?
- How to indicate a potential word break point within a section in HTML?
- How to make MySQL display results in a single line?

Advertisements