<a href="https://www.google.com/" rel="noopener noreferrer" target="_blank">google.com</a>
dont use just target="_blank" without rel="noopener noreferrer"
It Makes Your Site Vulnerable to Phishing Attacks
_________________________________________________________________
<a href="#" target="_blank">By this you can open your document in new tab</a>
<a href="#" target="_self"> by this linked document in the same frame as it was clicked (this is default)</a>
<a href="#" target="_parent">by this linked document in the parent frame</a>
<a href="#" target="_top">Opens the linked document in the full body of the window</a>
<a href="thislink.com" target="_blank">My Link</a>
<a href="https://www.google.com/" target="_blank">Open Google in a new tab!</a>
<a href="url" target="_blank">...</a>
<a href="https://www.thesitewizard.com/" rel="noopener noreferrer" target="_blank">thesitewizard.com</a>
<!-- This takes some security considerations into account as doing this can make your site vulnerable. See Link / Source for more info -->
<a href="https://www.codegrepper.com/" target="_blank">Grep!</a>
You should add the target="_blank" and rel="noopener noreferrer" in the anchor tag.
<a target="_blank" rel="noopener noreferrer" href="http://your_url_here.html">Link</a>
// You just have to add target="_blank" to open the link in new tab.
<a href="https://www.thesitewizard.com/" target="_blank">thesitewizard.com</a>
simply
<a href="#" target="_blank"> will open your link in new tab
<a href="The link of the page" target="_blank">Open page in new tab</a>
You can make a HTML link open in a new tab by adding the target=”_blank” attribute.
You should insert this after the link address.
<a href="https://vuejs.org/" target="_blank"> //add attribute target="_blank"