A tag for new tab
You're looking for a tag to open a new tab!
Here are a few options:
target="_blank"
: This is the most common way to open a new tab. You can add this attribute to an<a>
tag to open the linked page in a new tab.rel="noopener noreferrer"
: This is a good practice to add to your<a>
tag to prevent the new tab from accessing the parent page's cookies and other data.target="_blank" rel="noopener noreferrer"
: This is a combination of the two, which is a good practice to follow.
Here's an example:
<a rel="nofollow" target="_blank" href="https://www.example.com" target="_blank" rel="noopener noreferrer">Open in new tab</a>
This will open the linked page in a new tab and prevent the new tab from accessing the parent page's data.
Note that you can also use JavaScript to open a new tab programmatically. For example:
window.open("https://www.example.com", "_blank");
This will open the linked page in a new tab without the need for an <a>
tag.