answersLogoWhite

0


Best Answer

You are probably referring to the front slash. It, along with the less than sign and the greater than sign and the name of the tag, form an end tag, like this:

</html>

The opening tag does not have the front slash, so it is the character that makes the difference.

User Avatar

Wiki User

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

Wiki User

14y ago



If you mean for the entire document it would look like this:











This answer is:
User Avatar

User Avatar

Wiki User

11y ago

The </p> will close a paragraph in html.

This answer is:
User Avatar

User Avatar

Wiki User

15y ago

Use </html>.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What HTML character symbolizes that the tag is a closing tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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


Which HTML tag symbolizes a table cell?

The &lt;td&gt; tag defines a cell. It stands for table data.


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 happens with tags that don't have a closing tag?

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


What are reserved symbols in HTML?

There are various reserved symbols in HTML. &lt;,&gt; these are two reserved for the opening and closing tag.


Which HTML tags do you close out at the very end?

The very last tag should be the closing HTML tag. It would be done like this: &lt;/html&gt; Before that you would normally close the Body tag, like this: &lt;/body&gt;


What is the opening and closing tag for bold command in HTML?

&lt;b&gt;example&lt;/b&gt;


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 character does every tag in HTML start with?

Every HTML tag starts with a less-than sign, as shown below.