HTML | <base> target Attribute (original) (raw)
Last Updated : 5 May, 2025
The **** 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:
**Attribute Values:
- **_blank: It opens the link in a new window.
- **_self: It opens the linked document in the same frame. it is the default value.
- **_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: This example illustrates the use of target attribute in the element.
html `
HTML Base target Attribute<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>HTML Base target Attribute</h2>
<a href="https://www.geeksforgeeks.org/community/" alt="GFG">
Geeks Link
</a>
`
**Output:
**Supported Browsers: The browser supported by _HTML base target Attribute are listed below:
- Google Chrome
- Edge 12.0 and above
- Firefox
- Internet Explorer
- Opera
- Safari