answersLogoWhite

0

What does the HTML br do?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

The <br> tag creates a line-break. This causes the carriage to return to the beginning of the next line. It's similar to hitting "enter" on the keyboard. If you need a blank line (similar to a paragraph) you can use two in succession.

If you need an actual paragraph, you should use the <p> tag instead, but when you need a new line, like in an address, it's perfect.

Code like this:

<p>I like HTML<br>More than C</p>

Produces output similar to...

I like HTML

More than C

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

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

&lt;br&gt; means a break on the page or the placement of a new line below the current one.


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.