answersLogoWhite

0


Best Answer

slash

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Closing tags are identified by the that precedes the tag name?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Are all tags self closing?

No. Most tags are not self-closing. Only the IMG, BR, HR, META, LINK, and INPUT tags are self-closing.


What is the difference between paired Tags n Unpaired tags?

paired tags are those tags which have both opening and closing tagse.g. < body>unpaired tags are those tags which don't have a closing tage.g. < BR >


What are stand alone tags in HTML?

They would be tags that do not have closing tags. &lt;br&gt; would be an example. &lt;hr&gt; would be another example.


How many arguments can be passed to an applet using PARAM tags Explain all the parameters?

two arguments can be passed to applet using param tags NAMES and VALUES &lt;PARAM NAME ="name" VALUES = "values"&gt; Parameters are passed to applets in NAME=VALUE pairs in &lt;PARAM&gt; tags between the opening and closing APPLET tags. Inside the applet, you read the values passed through the PARAM tags with the getParameter() method of the java.applet.Appletclass.


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.

Related questions

What are self-closing tags in HTML?

Self-closing tags are tags that don't have a "" to close it.These tags include:imginputbrareabasecolembedkeygenlinkmetaparamsourcetrackand wbr


Are all tags self closing?

No. Most tags are not self-closing. Only the IMG, BR, HR, META, LINK, and INPUT tags are self-closing.


What is the difference between paired Tags n Unpaired tags?

paired tags are those tags which have both opening and closing tagse.g. < body>unpaired tags are those tags which don't have a closing tage.g. < BR >


What are stand alone tags in HTML?

They would be tags that do not have closing tags. &lt;br&gt; would be an example. &lt;hr&gt; would be another example.


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;


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.


How many arguments can be passed to an applet using PARAM tags Explain all the parameters?

two arguments can be passed to applet using param tags NAMES and VALUES &lt;PARAM NAME ="name" VALUES = "values"&gt; Parameters are passed to applets in NAME=VALUE pairs in &lt;PARAM&gt; tags between the opening and closing APPLET tags. Inside the applet, you read the values passed through the PARAM tags with the getParameter() method of the java.applet.Appletclass.


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.


What does forward slash mean in HTML?

It is used for closing tags and helps you distinguish it from an opening tag. For a lot of tags you need to know where their impact starts and ends, so you need opening and closing tags. If you wanted to bold one word in the middle of a sentence then you would start bolding at the beginning of it and end bolding at the end of the word. To differentiate the two tags, you need the forward slash, like this. This sentence contains one &lt;b&gt;word&lt;/b&gt; that is bolded. Some tags don't have closing tags, like the br tag. It is now common to put in a slash at the end of those tags like this: &lt;br/&gt;


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.


What is the pair of outermost container tags in a web document?

The outer-most container tags in a web document are the opening and closing HTML tags. For instance: &lt;html&gt; [Web stuff here &lt;/html&gt;


HTML contains 2 tags what are they?

HTML contains many more than 2 tags. Most tags come in a set of 1 opening and 1 closing tag. For example, &lt;html&gt; and &lt;/html&gt;.