answersLogoWhite

0

What does br in HTML?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

<br> means a break on the page or the placement of a new line below the current one.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does br in HTML?
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 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).


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

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


Basic HTML tags with brief description?

br


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

&lt;BR&gt;


What is 'BR' on Twitter?

BR is a user on Twitter who happens to have his or her updates protected. As far as an acronym, BR is not a familiar term. Possibly it stands for 'break' or &lt;br&gt; (HTML) - but there is no reason to use these on Twitter.


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


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