Open in a new tab html
A simple one!
To open a link in a new tab using HTML, you can use the target
attribute and set its value to _blank
. Here's an example:
<a rel="nofollow" target="_blank" href="https://www.example.com" target="_blank">Open in new tab</a>
This will open the link in a new tab when clicked.
Note that you can also use target="_new"
or target="_noopener"
instead of _blank
, but _blank
is the most widely supported and recommended option.
If you want to open a link in a new window instead of a new tab, you can use target="_window"
. However, this is not supported in all browsers, so it's generally recommended to use target="_blank"
for both tabs and windows.