answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many attributes does the BR tag have 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?

<br>


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 are 'on' and 'off' tags in HTML documents?

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


What is the tag for break or return?

<br> Yep, it's that simple for simple HTML ^^ If you are working with XHTML however, the tag will be <br />


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

<BR>


What are two-sided tags?

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


Which is not a pair tag in HTML?

<br /> <meta /> <link /> <hr /> 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 <br/>


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.


What does the HTML tag br mean?

<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