answersLogoWhite

0

What does the HTML tag br mean?

Updated: 8/10/2023
User Avatar

Wiki User

11y ago

Best Answer

<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

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

The HTML tag <br> (or <br/> in XHTML) is a tag that produces a line-break.

A line break causes the carriage that displays text to drop down to the next line and return to the 0 margin (which can be right, left, or center depending on the text justification.)

In practice, a <br> gives you the same effect that hitting "Enter" does in word processing programs.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does the HTML tag br mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

&lt;br&gt;


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: .


How many attributes does the BR tag have in HTML?

The BR tag has only the core tags, which all HTML tags have. These are id, class, style and title.


What are 'on' and 'off' tags in HTML documents?

In HTML, all tags are elements and all HTML elements other than empty elements and &lt;p&gt; elements require a start and end tag to delimit the element's content. The &lt;br&gt; tag is an example of an empty element (there is no &lt;/br&gt; tag). However, an empty element can also be closed by the start tag, such that &lt;br /&gt; is acceptable (&lt;br /&gt; is a requirement of XHTML but not HTML).


What is the tag for break or return?

&lt;br&gt; Yep, it's that simple for simple HTML ^^ If you are working with XHTML however, the tag will be &lt;br /&gt;


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

&lt;BR&gt;


What are two-sided tags?

A two-sided tag is one that has an opening tag and a closing tag, such as &lt;a&gt; and &lt;/a&gt;. This is in contrast to other tags, like &lt;br&gt; and &lt;img&gt;, which do not need closing tags.


Which is not a pair tag in HTML?

&lt;br /&gt; &lt;meta /&gt; &lt;link /&gt; &lt;hr /&gt; Are three of these.


What is a tag List 10 HTML tag?

There are various tags in HTML that can be used. 10 of them are: p, a, br, head, body, html, title, script, link, style.


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 the tag for posting the current date in HTML website?

var today = new Date();document.write(today);


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.