How to Add a Line in HTML
When writing HTML code for your website, you can write out text to be displayed on the page. If you have tried to upload a site with just text, though, you will notice that the line breaks you insert in the HTML file are not displayed on the page. This is because web browsers strip out all formatting that you create. The solution is to use a line break tag, which tells the browser to skip a line when displaying the content on your web page.
Instructions
-
-
1
Open the web page that you wish to edit in a text editor.
-
2
Locate the place (or places) in your HTML document where you wish to have a line break.
-
-
3
Type "<br>" (without quotes) at the location where you want a line break. The <br> tag tells the web browser to insert a line break when displaying the page.
-
4
Save the HTML file and upload it to your website (if necessary).
-
1