HTML | <link> target Attribute (original) (raw)
Last Updated : 13 Dec, 2021
The HTML 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:
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 `
HTML link target AttributeGeeksforGeeks
<h2>
HTML <link> target Attribute
</h2>
<link href="geeksforgeeks.org" target="_blank">
</center>
`
Output:
Supported Browsers: The HTML target attribute is not supported by any browsers.