answersLogoWhite

0


Best Answer

Tags that do not have a closing tag will probably not render. If it's somthing like the <html> tag or the <body> tag, the whole web page may not work.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What happens with tags that don't have a closing tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Closing tags are identified by the that precedes the tag name?

slash


What are two-sided tags?

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


What is the general syntax for two sided HTML tags?

For two-sided HTML tags, the general syntax is the tag name, any attributes, the tags content, and then the closing tag. Like so:Tag ContentSome attributes are optional. Others are required. It depends entirely on which tag you're using.


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


How are opening and closing tags different?

An opening tag is used to indicate the starting point of an action by a tag. The closing tag shows when to stop this action. The front slash is added to a tag, before the tagname, to indicate that it is a closing tag. What is between the tags is effectively selected for this action. To start bolding for example, we use &lt;b&gt; and to stop we use &lt;/b&gt; as follows: This text is &lt;b&gt; bold &lt;/b&gt; text. The word bold in the above sentence would be bolded, as that is what is enclosed by the opening and closing tags. The text outside of that is as normal.


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.


What is Unpaired tag in HTML?

A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag.ExampleThis text is in italics. Note: Here is called opening tag. and is called closing tag.


Is meta tags having closing tags?

Meta tags do not have closing tags in HTML. The following is perfectly valid HTML: &lt;meta http-equiv="content-language" content="en"&gt; When you get into XHTML, you'll need to close the tag but by definition meta tags are self-closing. So the correct way to close the meta tag would be by adding a forward slash just before the closing bracket, like so: &lt;meta http-equiv="content-language" content="en" /&gt;


Which tag contains the visual part of a web page?

Tags usually travel in pairs. An opening tag begins a section of page content, and a closing tag ends it. For example, to markup a section of text as a paragraph, you would open the paragraph with an opening paragraph tag and close it with a closing paragraph tag (closing tags always proceed the element with a /).


Difference between container tag and standalone tag?

A container tag has two ends (an opening and a closing) whereas an empty tag doesn't. The paragraph tag is an example of a container tag: &lt;p&gt;Our paragraph text here.&lt;/p&gt; The image tag is a good example of an empty tag. &lt;img src="logo.png" alt="Yay!"&gt; See how the initial paragraph tag (&lt;p&gt;) has a corresponding end tag? The text in between is "contained" by the tag.


How many BODY tags can you have in an HTML document?

One opening tag and one closing tag.Example:Page Content.


What are the different types of TAGS?

In HTML 5, the two primary groupings for tags are closed tags, and unclosed tags.Closed tags require both an opening tag and a closing tag, and their content exists in between. For instance, the paragraph tag.This is a paragraph.Unclosed tags (or "self-closing" in XHTML) do not have a partner. In other words, the initial tag is the only tag that is necessary (or even valid) and the important information is instead contained within the elements attribute. The classic example of an unclosed tag is the image tag:In XHTML, tags must close to comply with the XML specification. If you're working in that older standard, an unclosed tag "self-closes" using a / before the greater-than sign. In other words: