answersLogoWhite

0

Line breaks are inserted using the empty BR entity:

<br />

You can enclose a paragraph inside a P entity:

<p>This is a paragraph</p>

Check the w3schools.org site for HTML how to's.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

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 the correct HTML tag for a inserting a line break?

&lt;br&gt;


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

Correct HTML tag for inserting a line break? you can use &lt;br/&gt;


What is deference in code view and design view?

Giving line break is same as paragraph.


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

&lt;BR&gt;


In Word a mark that you insert to indicate where you want a page to end is?

It is known as inserting a page break.


How do you add another page in Word?

You can add another page by inserting a page break.


Is break a line break tag?

No, the break line tag is: &lt;br /&gt;


How do you break password in SD Mini card while inserting the same in Nookie 5130?

how to break the password in SD mini card


What is a short break line?

what is short break line


When inserting columns in a newsletter which option allows the columns only to appear after the dateline?

Continuous Break.


What is the role of the break keyword in while and do loops?

When a loop encounters a break statement, code execution will immediately exit the loop and begin again at the next line after the loop. int i = 0; while(1) { i = i + 1; if(i == 3) { break; } printf("%d ", i); } printf("broken"); Output for the above block of code will be: "1 2 broken" Once i is increased to 3, the if statement holds true and code execution will move to the line outside of the loop block.