Att A Target
# HTML `` target Attribute
The `target` attribute of the HTML anchor (``) tag specifies where to open the linked document. By default, browsers open the linked page in the current window or tab. Using the `target` attribute allows you to change this behavior, such as opening the link in a new tab, a parent frame, or a specific named iframe.
---
## Quick Example
The following example demonstrates how to open a link in a new browser tab or window using `target="_blank"`:
```html
Visit Wikipedia!
```
---
## Browser Support
The `target` attribute is fully supported by all modern web browsers:
* Google Chrome
* Mozilla Firefox
* Microsoft Edge / Internet Explorer
* Safari
* Opera
---
## Syntax
```html
```
---
## Attribute Values
| Value | Description |
| :--- | :--- |
| `_blank` | Opens the linked document in a new window or tab. |
| `_self` | **Default.** Opens the linked document in the same frame/tab as it was clicked. |
| `_parent` | Opens the linked document in the parent frame. |
| `_top` | Opens the linked document in the full body of the window (breaks out of all frames). |
| *framename* | Opens the linked document in a custom named `
YouTip