answersLogoWhite

0


Best Answer

<html>

<body>

<div></div>

</body>

</html>

that is an empty div tag, there is nothing in between the <div> and </div>

User Avatar

Wiki User

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

Wiki User

12y ago

HTML elements with no content are called empty elements.

<br> is an empty element without a closing tag (the <br> tag defines a line break).

In XHTML, all elements must be closed. Adding a slash inside the start tag, like <br />, is the proper way of closing empty elements in XHTML (and XML).

This answer is:
User Avatar

User Avatar

Wiki User

6y ago

An empty element with no closing tag is known as a void or empty tag. There are several void tags: , ,
, ,


, , , , and . HTML5 added , and to the list of void tags.

In HTML 4.01, we use the following form:

In XHTML 1.0 Strict, we use the following form (known as a self-closing tag):

Both forms are valid in HTML5.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Empty tags are the ones that do not need to be closed. BR or break line is one of the empty tag.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

When the tags are there, but no content has been entered.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an empty HTML element which does not have a closing tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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 a simple code that provides about HTML elements.?

An HTML element is everything from the start tag to the end tag.An HTML element starts with a start tag / opening tagAn HTML element ends with an end tag / closing tagThe element content is everything between the start and the end tagSome HTML elements have empty contentEmpty elements are closed in the start tagMost HTML elements can have attributesSample CodeHello World


What is a simple code that provides details about HTML elements?

An HTML element is everything from the start tag to the end tag.An HTML element starts with a start tag / opening tagAn HTML element ends with an end tag / closing tagThe element content is everything between the start and the end tagSome HTML elements have empty contentEmpty elements are closed in the start tagMost HTML elements can have attributesSample CodeHello World


What is an empty tag?

An empty tag is a tag that contains no element or attributes. For example: Text The bold is the element and the italic is the attribute. An empty tag doesn't contain either, and rather than an opening and a closing tag, it is just one tag, for example:


What are the HTML elements that appear in the BODY element?

The body element can contain from nothing to all of a web page's content. It follows the closing head tag and goes until the closing html tag. So, pretty much anything that doesn't specifically belong in the head tag will appear in the body element.


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 should be the last command in any HTML document?

The last command in any HTML document is a closing HTML tag. Just before it is the closing BODY tag. &lt;/BODY&gt; &lt;HTML&gt;


Which HTML codes do not require closing?

As far as I know, all HTML codes require a closing tag.


Which symbol is used for a closing tag in html?

The front slash is added to a tag, before the tagname, to indicate that it is a closing tag: &lt;html&gt; is an opening tag. &lt;/html&gt; is a closing tag. &lt;title&gt; is an opening tag. &lt;/title&gt; is a closing tag.


Is Slash is used to create a closing tag?

Yes. &lt;FORM&gt; is the opening tag whereas &lt;/FORM&gt; is the closing tag. This &lt;/TAG&gt; to close tags is applicable for most tages. ex: &lt;HTML&gt; &lt;/HTML&gt; &lt;BODY&gt; &lt;/BODY&gt; etc...


What is the difference between p tag and h4 tag?

Tags define elements. The P tag introduces a paragraph. The H4 tag introduces a fourth-level heading. A P element does not require a closing tag in HTML, but does in XHTML.


Is an HTML element is a tag?

The term tag and element are both used for the same thing.