What are the HTML tags that deprecated in HTML5 ? Last Updated : 25 Aug, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we will see the various deprecated Html tags & their alternative tags in HTML5. Deprecated tags are those tags that are allowed, but not recommended for use and are being replaced by newer ones. The tag or attributes depreciated when the same attributes are achieved in some other way. Several reasons for being discarded & uses the newer one: There are several tags that help to achieve the same task. For this reason, the length of the source code is also reduced & hence improve the overall performance.Managing the large size code will be difficult & modifying such a source code will not be possible at once. This can increase the time for development as well as ambiguity in the code.Sometimes, it might happen if we need to use a particular block of code to perform a specific task then we may need to re-write the code again. All these factors help to increase the complexity as well as the development time which is not worth the development process.For this, several tags & attributes were introduced in HTML5. Here is a complete list of deprecated tags are discussed below.HTML 5 Deprecated Tag: Complete list of deprecated tags are given below. TAGS DESCRIPTIONS ALTERNATIVE TAGS<basefont>To Specify a basefont.font style sheets.<font>It specifies font text, size and color.font-family, font-size, color.<center>It specifies a centered Text.text-align:center.<strike>It specifies a strike-through text.text-decoration.<big>Defines big text.Use CSS properties or Heading tags.<dir>It specifies a directory list.ul tag.<isindex>It specifies a single-line input field.form tag.<applet>It specifies an applet.object tag.<acronym> An acronym is defined using this tag.Use abbr. <noframe>It is used to define a noframe section.Either use an iframe and CSS instead or use server-side include to generate complete pages with the various invariant parts merged in.<xmp>Renders text between the start and end tags without interpreting the HTML in between and using a monospaced font.Use pre and code instead.<noembed>A tag makes it easy to supply alternative content that tells users what they are missing.Use object instead of embed when fallback is necessary.<plaintext>It is used to render all text in the document exactly as it was typed in.Use the "text/plain" MIME type instead.<frameset>It specifies a set of frames.Either use iframe and CSS instead or use server-side include to generate complete pages with the various invariant parts merged in.<frame>It specifies a frame.Either use iframe and CSS instead or use server-side include to generate complete pages with the various invariant parts merged in.<u>It specifies an underlined text.text-decoration.<tt>Defines teletype text.Use CSS properties.<s>Specify a strike-through text.text-decoration.HTML Deprecated Attributes: Several tag attributes are also removed. Following is the table having removed attributed and their corresponding impacted tags (elements) ie. elements from which those attributes have been removed permanently. REMOVED ATTRIBUTESTAGS IMPACTEDALTERNATIVESreva, linkUse the rel attribute. longdescimg, iframeUse a regular element to link to the description. versionHtmlUnnecessary, not required to mention. charseta, linkUse an HTTP Content-Type header on the linked resource instead. namea, imgUse the id attribute instead. nohrefareaOmitting the href attribute is sufficient. The nohref attribute is unnecessary, not required to mention. usemapinputUse img instead of input for image maps. targetlinkUnnecessary, not required to mention. schememetaUse only one scheme per field, or make the scheme declaration part of the value. codetypeobjectUse the data and type attributes to invoke plugins. declareobjectRepeat the object element completely each time the resource is to be reused. standbyobjectOptimise the linked resource so that it loads quickly or, at least, incrementally. valuetypeparamWithout declaring value types, use name and value attributes. languagescriptUse the type attribute. abbrtd, thUse text that begins in an unambiguous and terse manner, and include any more elaborate text after that. axistd, thScope attribute should be used. Comment More infoAdvertise with us Next Article What are the HTML tags that deprecated in HTML5 ? A akshitsaxenaa09 Follow Improve Article Tags : Web Technologies HTML HTML5 HTML-Tags HTML-Questions +1 More Similar Reads What are the media element tags introduced by HTML5 ? HTML5 introduced 5 most popular media element tags i.e. <audio>, <video>, <source>, <embed>, <track>. These media element tags changed the entire development using HTML. In this article, you will get to know about these five media element tags briefly.Media Tags:Media T 3 min read What are the various formatting tags available in HTML ? As we know, HTML provides many predefined elements that are used to change the formatting of text. The formatting can be used to set the text styles (like â bold, italic, or emphasized, etc.), highlight the text, make text superscript and subscript, etc. In this article, we will discuss different fo 3 min read HTML Deprecated Tags The deprecated tags or attributes are those attributes which are replaced by some other attributes. The tag or attributes deprecated when the same attributes is achieved by some other way. They are considered outdated and may not be supported in modern browsers or future versions of HTML. HTML Depre 2 min read What are Self Closing Tags in HTML? Self-closing tags, also known as void elements, are HTML elements that do not require a separate closing tag. These tags are self-contained and are typically used for elements that do not have any content between an opening and closing tag. Self-closing tags help keep the HTML structure clean and co 3 min read What is the meaning of DOCTYPE in HTML ? The HTML document type declaration or Doctype is an instruction used by web browsers to fetch what version of HTML the website is written in. It helps browsers in understanding how the document should be interpreted thus eases the rendering process. It is neither an element nor a tag. The doctype sh 2 min read Like