tags that are on the way to being discontinued
Answers
Answer:The following element tags which were present in HTML4 is discontinued in HTML5…
<acronym> – use <abbr> instead
<applet> – use <object> instead
<basefont> – use CSS instead
<bgsound> – use <audio> instead
<big> – use CSS instead
<blink> – who uses this anymore?
<center> – use CSS instead
<dir> – use <ul>
<font> – use CSS instead
<frame>
<frameset>
<isindex>
<marquee> – similar to “blink” no one uses
<multicol>
<nobr>
<noframe>
<noscript>
<s>
<spacer>
<strike> – use CSS instead
<tt> – use CSS instead
<u> – use CSS instead
Hope this helps u......
Explanation:
This is a list of tags used in the HTML language. Each tag starts with a tag opener (a less than sign) and ends with a tag closer (a greater than sign). Many tags have corresponding closing tags which identical except for a slash after the tag opener. (For example, the TITLE tag).
Some tags take parameters, called attributes. The attributes are given after the tag, separated by spaces. Certain attributes have an effect simply by their presence, others are followed by an equals sign and a value. (See the Anchor tag, for example). The names of tags and attributes are not case sensitive: they may be in lower, upper, or mixed case with exactly the same meaning. (In this document they are generally represented in upper case.)
Currently HTML documents are transmitted without the normal SGML framing tags, but if these are included parsers will ignore them.
Title
The title of a document is given between title tags:
<TITLE> ... </TITLE>
The text between the opening and the closing tags is a title for the hypertext node. There should only be one title in any node. It should identify the content of the node in a fairly wide context, and should ideally fit on one line.
The title is not strictly part of the text of the document, but is an attribute of the node. It may not contain anchors, paragraph marks, or highlighting. the title may be used to identify the node in a history list, to label the window displaying the node, etc. It is not normally displayed in the text of a document itself. Contrast titles with headings .