We can add this target="_blank" in the <a> tag to open link in new tab

Example code


<!DOCTYPE html>

<head>

</head>
<body>


<!-- Opens in the same tab -->
<a href="https://en.wikipedia.org/wiki/Main_Page">Visit Wikipedia (same tab)</a>

<br>

<!-- Opens in a new tab -->
<a href="https://en.wikipedia.org/wiki/Main_Page" target="_blank">Visit Wikipedia (new tab)</a>

</body>
</html>


This site uses cookies from Google to deliver its services and analyze traffic. By using this site, you agree to its use of cookies.