A tag for new tab

You're looking for a tag to open a new tab!

Here are a few options:

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.