HTML | <link> target Attribute Last Updated : 13 Dec, 2021 Comments Improve Suggest changes Like Article Like Report The HTML <link> target Attribute is used to specify the window or a frame where the linked document is loaded. It is not supported by HTML 5. Syntax: <link target="_blank|_self|_parent|_top|framename"> Attribute Values: _blank: It opens the link in a new window. _self: It is the default value. It opens the linked document in the same frame. _parent: It opens the linked document in the parent frameset. _top: It opens the linked document in the full body of the window. framename: It opens the linked document in the named frame. Example: html <!DOCTYPE html> <html> <head> <title> HTML link target Attribute </title> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> HTML <link> target Attribute </h2> <link href="geeksforgeeks.org" target="_blank"> </center> </body> </html> Output: Supported Browsers: The HTML <link> target attribute is not supported by any browsers. Comment More infoAdvertise with us Next Article HTML | <link> target Attribute jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML <a> target Attribute The HTML <a> target Attribute is used to specify where to open the linked document. This attribute enhances the functionality and user experience by allowing developers to control the behavior of links.Syntax<a target="_blank | _self | _parent | _top | framename"\> Attribute Values_blank 1 min read HTML | <base> target Attribute The <base> target Attribute in HTML is used to specify the default target for all hyperlinks and forms in the webpage. This attribute could also be overridden by the use of the target attribute for each hyperlink and the Form. Syntax: <base target="_blank|_self|_parent|_top|framename" > 1 min read HTML | <area> target Attribute The HTML <area> target Attribute is used to specify where to open the linked document. It works only when href attribute is present in the area elements. Syntax: <area target="_blank|_self|_parent|_top|framename"> Attribute Values: _blank: It opens the link in a new window._self: It is t 1 min read HTML <form> target Attribute In this article, we will see how to open the new tab in HTML using <form> target Attribute, along with understanding its implementation through the examples. The <form> target Attribute in HTML is used to specify whether the submitted result will open in the current window, a new tab, or 2 min read HTML | <body> link Attribute The HTML <body> link Attribute is used to specify the default color for a unvisited link in a document. Note : The HTML <body> link attribute is not supported by HTML5. Instead of using this attribute we can use CSS | :link Selector Syntax: <body link="color_name|hex_number|rgb_number 1 min read HTML link rel Attribute The <link> rel attribute is an essential part of HTML that specifies the relationship between the current document and a linked document or resource. It is used in conjunction with the href attribute to define how the two documents relate to each other.Syntax: <link rel="value" href="URL" 2 min read HTML <img> src Attribute The <img> src attribute is used to specify the URL of the source image. It points to the location of the image file that the browser should display on the webpage. Syntax:<img src="URL">Attribute Values: It contains a single-value URL that specifies the link to the source image. There ar 1 min read HTML target Attribute The HTML target Attribute is used to specify where to open the linked document. It can be used on various elements such as: HTML <a> target AttributeHTML <area> target AttributeHTML <base> target AttributeHTML <form> target AttributeSyntax:<element target="_blank|_self|_pa 2 min read HTML | <a> rel Attribute The rel attribute is used to specify the relationship between the current and the linked document. It is used only when the href attribute is present. Syntax:<a rel="value">Attribute Values:alternate: It defines an alternate version of the document i.e. print page, translated, or mirror.author 1 min read HTML <a> rev Attribute The HTML <a> rev attribute is used to define the relationship between the linked document and the current document. This attribute is reversed of HTML rel attribute. It is not supported in HTML5. Syntax:<a rev="value">Attribute values:alternate: It defines an alternative version of the d 2 min read Like