Home >Web Front-end >HTML Tutorial >How to insert single line break in HTML?

How to insert single line break in HTML?

王林
王林forward
2023-08-20 19:37:121149browse

How to insert single line break in HTML?

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 −

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>

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete