xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to add a line break in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>How to add line break in an HTML page</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>How to add line break in an HTML page</h1> <hr/> <!-- <br> or <br/> is used to create a line break in html page --> <p>There will be a break from here.<br/> The line after the break<p> <br/> <!-- A space will be created between the <p> tags --> <p> The above gap is due to the use of break. <br> or <br/> tag is used to create a line break.<p> </body> </html>