answersLogoWhite

0


Best Answer

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

User Avatar

Clark Rosenbaum

Lvl 10
2y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

B.

This answer is:
User Avatar
User Avatar

Lashanti Gum

Lvl 1
2y ago
Honestly,this was not very helpful
User Avatar

Peyton Sellers

Lvl 1
2y ago
Its br for apex
User Avatar

Jake Naka

Lvl 1
11mo ago
It’s

User Avatar

NATHAN FRITZ

Lvl 2
3y ago

< br >

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

In HTML, the line break tag is used to cause a carriage return and newline to begin text on the line immediately below the tag. The tag looks like this in HTML 3-5:


In XHTML, the line break tag follows the "empty tag" XML pattern, so it looks like this:


To keep some very old browsers from choking on that version, you'll often see a space between the tag and the /:


This answer is:
User Avatar

User Avatar

Wiki User

11y ago

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

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

<br />

Will create a line break in html.

This answer is:
User Avatar

User Avatar

Wiki User

10y ago

In HTML5, it is valid to use <br> or <br /> to create a line break. The forward slash before the end of the tag is optional and ignored in HTML5.

This answer is:
User Avatar

User Avatar

Wiki User

6y ago

The tag is called <br />. You can use this if you do not want to type a continuous line.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

< p >

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What HTML tag would you use to indicate a line break?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the break element in HTML?

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


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 are the two breaks in HTML?

There are 2 types of breaks in HTML. One is the line break i.e. &lt;br&gt; and the horizontal line break &lt;hr&gt;.


What is a html line break used for?

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.


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 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?

&lt;br&gt;


What is the Html tag for break?

A Line Break Is &lt;br&gt; A Paragraph Break Is &lt;p&gt; or some browsers accept &lt;br /&gt; Hope that helps!!!


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;


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 "&lt;br&gt;" to create a line break in HTML), it is useful for &lt;pre&gt;formatted text, textareas, or for outputting a formatted non-HTML text response.


What does the HTML tag br mean?

&lt;BR&gt; tag stands for line break. This is the first line &lt;BR&gt; This is the second line In HTML the above code will get displayed as: This is the first line This is the second line


What is the code for inserting a line break?

Line breaks are inserted using the empty BR entity: &lt;br /&gt; You can enclose a paragraph inside a P entity: &lt;p&gt;This is a paragraph&lt;/p&gt; Check the w3schools.org site for HTML how to's.