<!--blank is used to open the link in new tab-->
<a href="https://www.google.com" target="_blank">google</a>
<head>
<base target="_blank">
</head>
<!--makes all links open in a new tab-->
<!--or if you need to use it on a specific link-->
<body>
<a href="https://www.google.com" target="_blank">google</a>
</body>
<!-- target="_blank" can expose your site to performance and security issues -->
<!-- Adding rel="noopener" or rel="noreferrer" avoids these issues -->
<a href="https://www.google.com" target="_blank" rel="noopener">google</a>
<base target="_blank">