_blank new tab
You want to open a new tab!
Here is the code to open a new tab: _blank
You can use this code in HTML, JavaScript, or even in a link URL to open a new tab when clicked. For example:
- HTML:
<a rel="nofollow" target="_blank" href="https://www.example.com" target="_blank">Open in new tab</a>
- JavaScript:
window.open("https://www.example.com", "_blank");
- URL:
https://www.example.com?target=_blank
This will open the link in a new tab, rather than replacing the current tab.