<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="#" 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="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 -->
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>
<a href="URL" target="_blank">Click here to go to my link</a>
<!--The A tags are for hyper links, href stands for hypertext reference
target="_blank" opens link in a new tab-->