You can use the target
attribute for opening a link in new tab:
<a href="https://google.com" target="_blank">Google Link</a>
OR
<a href="https://google.com" target="blank">Google Link</a>
DIFFERENCE
_blank will always open the link in a new tab.
blank will open the link in a new tab on the first opening, but all following openings will reuse/update the existing tab.