answersLogoWhite

0


Best Answer

deprecated tags

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: A tag that W3C has earmarked for eventual removal?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the use of abbr tag in HTML?

The abbr tag is used to expand abbreviations for people. For instance, W3C stands for the World Wide Web Consortium. The abbr tag for it would be: <abbr title="World Wide Web Consortium">W3C</abbr> In most browsers, the abbr tag looks similar to a link. When you hover over the tag, the browsers produce a "tool-tip" styled box next to the mouse with the value of the title attribute in it. This behavior is not anyplace in the standard. They've just all decided it's a good solution. You can find the HTML5 definition for the abbr tag at W3Scools.com (see the Related Links)


Is the body tag required for all HTML documents?

Technically it should be included, but many browsers assume its existence if it isn't there. (if i recall correctly) If you want to stay compliant with the W3C specifications, however, you must have a body tag. It must be the only body tag in the page, it must be a direct child of the HTML tag, and it must be preceded by 1 and only 1 HEAD tag.


What tag is used to write text in the title bar?

To write text in the title bar of the window, you use the HTML <title> tag. This tag is part of the <head> section of the document, and is the only child of the head required for your XHTML or HTML 5 to validate according to the W3C. Example: If the name of my page was "I love the fishes!" the title tag would look like this <title>I love the fishes!</title>


What are the minimum requirements for an HTML tag?

A basic HTML tag shoould in clude a start and end tag for example to make text you have 2 tags <p>text goes here</p> the slassh means end tag. that is if you have a tag with lots of stuff. but if you have a tag like<body bgcolor="#000000">you don't need that. just put lesstan sighn, what tag does, greater than sighn. you also need info on what the tag does. for example in the body bgcolor tag above you type what you want the tag to do, than type = and put qoutation marks before and after the info. A basic HTML tag shoould in clude a start and end tag for example to make text you have 2 tags <p>text goes here</p> the slassh means end tag. that is if you have a tag with lots of stuff. but if you have a tag like<body bgcolor="#000000">you don't need that. just put lesstan sighn, what tag does, greater than sighn. you also need info on what the tag does. for example in the body bgcolor tag above you type what you want the tag to do, than type = and put qoutation marks before and after the info.


The title tag belongs where in your HTML?

Anywhere in the HEAD section of the HTML document. The W3C specification says that the TITLE tag must be present for the document to be considered valid. It should be a child of the HEAD element, but the specific location therein doesn't make a difference.

Related questions

Does Medicare pay for skin tag removal?

Does medicare pay for skin tag rremoval


What is the use of abbr tag in HTML?

The abbr tag is used to expand abbreviations for people. For instance, W3C stands for the World Wide Web Consortium. The abbr tag for it would be: <abbr title="World Wide Web Consortium">W3C</abbr> In most browsers, the abbr tag looks similar to a link. When you hover over the tag, the browsers produce a "tool-tip" styled box next to the mouse with the value of the title attribute in it. This behavior is not anyplace in the standard. They've just all decided it's a good solution. You can find the HTML5 definition for the abbr tag at W3Scools.com (see the Related Links)


What kind of doctor is for rectal skin tag removal?

A dermatologist would be able to perform a skin tag removal. If the skin tag is small than we will not feel any pain but if it is large than the doctor will apply some medication so we feel no pain.


Is the body tag required for all HTML documents?

Technically it should be included, but many browsers assume its existence if it isn't there. (if i recall correctly) If you want to stay compliant with the W3C specifications, however, you must have a body tag. It must be the only body tag in the page, it must be a direct child of the HTML tag, and it must be preceded by 1 and only 1 HEAD tag.


Can you use body tag and form tag together in HTML?

If you want to maintain W3C compliance, you can't use the FORM tag without the BODY tag. The FORM tag must be contained within the BODY tag. Like this <html> <head> <title>Our Cool Form Page</title> </head> <body> <form method="post" action="example.php"> <input type="submit" value="submit"> </form> </body> </html>


What tag is used to write text in the title bar?

To write text in the title bar of the window, you use the HTML <title> tag. This tag is part of the <head> section of the document, and is the only child of the head required for your XHTML or HTML 5 to validate according to the W3C. Example: If the name of my page was "I love the fishes!" the title tag would look like this <title>I love the fishes!</title>


What are the minimum requirements for an HTML tag?

A basic HTML tag shoould in clude a start and end tag for example to make text you have 2 tags <p>text goes here</p> the slassh means end tag. that is if you have a tag with lots of stuff. but if you have a tag like<body bgcolor="#000000">you don't need that. just put lesstan sighn, what tag does, greater than sighn. you also need info on what the tag does. for example in the body bgcolor tag above you type what you want the tag to do, than type = and put qoutation marks before and after the info. A basic HTML tag shoould in clude a start and end tag for example to make text you have 2 tags <p>text goes here</p> the slassh means end tag. that is if you have a tag with lots of stuff. but if you have a tag like<body bgcolor="#000000">you don't need that. just put lesstan sighn, what tag does, greater than sighn. you also need info on what the tag does. for example in the body bgcolor tag above you type what you want the tag to do, than type = and put qoutation marks before and after the info.


The title tag belongs where in your HTML?

Anywhere in the HEAD section of the HTML document. The W3C specification says that the TITLE tag must be present for the document to be considered valid. It should be a child of the HEAD element, but the specific location therein doesn't make a difference.


On HTML When a tag is no longer used or is becoming obsolete it is a?

"Deprecated" tag. Deprecation is a process that allows the continued use of a tag, especially in legacy documents, while also signaling to developers that the tag may eventually be superseded. A superseded tag is a tag that has been removed entirely from the standard. The tag no long has to function for a browser to be standards compliant, and using the tag will absolutely cause a fault in validation. Sometimes a deprecated tag is rescued in the next version. This happens when the standards body (the W3C for HTML) decides that removing the tag wasn't the best decision, or finds a use for the tag it hadn't previously considered. In the case of HTML, XHTML 1.0 deprecated the italic <i> and bold face <b> tags, but HTML 5 restored them to standards compliance.


What tags places a title in the title bar on a browser?

The TITLE tag is used to define the title of the page. This value is used inside the title bar of the browser, on tabs, in bookmark files, and by search engines. The TITLE tag is a required child of the HEAD section of the document. In XHTML 1.0 Strict and HTML5, a document cannot pass the W3C validation check without a title tag being present.


Can you create your own tag in HTML?

You can in HTML 5. But according to the W3C, you shouldn't.The W3C maintains the DTDs that define the HTML language. These DTDs are obviously outside your control. Therefore, if you were to include your own tags, they'll never validate against the DTD.However, if against my advice, you feel the absolute need to create a custom tag, the browsers (FF, Chrome, IE 7 - 9) will allow it.To do it, you would simply add the tag to the document:Dot ComThen in the CSS, you want to normalize the tags attributes.answer { display:block; margin:0; padding:0; ... }Next, you have to deal with old Internet Explorer versions, which will not like this tag otherwise.And then you can use it as you please.NB: This isn't a particularly great idea, and I frankly don't know why you'd want to do it. I suppose there may be some validity using it internally, but what are you doing with HTML internally that requires such a bizarre tag?


Removal of price tag adhesive from clothing?

Pull paper part off, use Goo-Gone for any residue.