answersLogoWhite

0

A html line break is used to break up two sentences but it does not break up paragraphs, it just moves the next sentence that you are going to write onto the next line therefore "breaking" it up.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is the break element in HTML?

The break element is <br>. You would use this to make a new line when making a page in HTML. This can be used anywhere in HTML.


What is the full form of BR in HTML?

The correct HTML form for BR is . BR is a tag to force a line break. It was introduced as a single tag, with no companion tag. The and tags work with older HTML, but for HTML 5, you need to have an ending tag for each tag. You can create your own ending tag by adding forward slash within the single tag: .


What HTML tag would you use to indicate a line break?

A tag is used to insert a line break. This tag is the HTML way of outputting a new line.


What are the two breaks in HTML?

There are 2 types of breaks in HTML. One is the line break i.e. <br> and the horizontal line break <hr>.


What is inserting a line break for HTML?

Inserting a line break would be just adding the following to the part where you want to break your line:


What is a pause or break in the middle of a line of verse?

You can make a break in the line in HTML by placing in BR tag. It moves whatever is being written to the next line.


What is the correct HTML tag for a inserting a line break?

<br>


What is the Html tag for break?

A Line Break Is <br> A Paragraph Break Is <p> or some browsers accept <br /> Hope that helps!!!


What is a tag used for providing space betwwn two lines in HTML?

you can either use an empty paragraph (<p></p>) or a line break <br />


What is the correct HTML element for inserting a line break?

Correct HTML tag for inserting a line break? you can use <br/>


How do you make a line break in PHP?

In PHP, you can create a Windows-style CRLF line break using the string "\r\n". However, it is usually sufficient, easier to handle, and sometimes even necessary to omit the CR, meaning that you can just use "\n". Although the line break will just count as white space for HTML (use can echo "<br>" to create a line break in HTML), it is useful for <pre>formatted text, textareas, or for outputting a formatted non-HTML text response.


What does the HTML tag br mean?

<BR> tag stands for line break. This is the first line <BR> This is the second line In HTML the above code will get displayed as: This is the first line This is the second line