Use the
tag to insert a single line break into HTML. You can try running the following code to insert a newline using the
tag −
<!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>
The above is the detailed content of How to insert single line break in HTML?. For more information, please follow other related articles on the PHP Chinese website!