answersLogoWhite

0

<BR> i.e. break line is an empty tag. An empty tag once opened is not needed to be closed.

User Avatar

Wiki User

10y ago

What else can I help you with?

Related Questions

What is tha you explain empty tags used in HTML pagas?

Empty tags are the ones that do not need to be closed. They once opened are not closed like &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).


What are examples of brackets in technology?

HTML


What is an empty HTML element which does not have a closing tag?

&lt;html&gt; &lt;body&gt; &lt;div&gt;&lt;/div&gt; &lt;/body&gt; &lt;/html&gt; that is an empty div tag, there is nothing in between the &lt;div&gt; and &lt;/div&gt;


What is meant by drop-down list Also explain with examples how it helps users?

Drop Down list is the select option in which there are multiple options on drop down. It can be done by &lt;select&gt; tag in HTML.


Where can one find a free tutorial on html tables?

There are numerous websites where you can find free information on HTML, HTML tables and HTML programming. Some examples are Tizag, HTML Code Tutorial, Quackit, HTML Tables, and HTML Goodies. That should be more than enough to get you started.


How can you create a HTML documents?

You can create a HTML file in any of the text editors known. Notepad and various other IDE's are examples.


What is a website that gives you metaphors?

Try examples/yourdictionary.com//metaphorexamples/html


All examples of HTML?

My god some questions are brief, there are millions of pieces of HTML combinations, the best place to look is w3schools.com and bleepingcomputer.com


What is the examples of HTML?

HTML is a new generation scripting language which is used to make web sites. You can make highly interactive websites from this language.


How do you make a webpage using HTML?

First Google for "HTML tutorials", bookmark these sites and learn. HTML is what i like to call a tag language, and it's an easy thing to learn. a very basic webpage would look like: ================================================================================ &lt;!-- --&gt; is a HTML comment and wont be displayed by the browser, usage: &lt;!-- this is a comment --&gt; copy and paste the bit from &lt;HTML&gt; to &lt;/HTML&gt; paste it in an empty text file and save it as .HTML open the newly saved HTML file(double click it), Congrats your first HTML page.


Which HTML code does not require a closing tag?

There are many of them. The convention now is to add a front slash into the tag, after the tagname and any attributes that might be in them. Examples include: &lt;hr/&gt; &lt;br/&gt; &lt;img src="picture.jpg" /&gt; &lt;input type="text" /&gt; &lt;button /&gt;