Home

Published

- 1 min read

target blank html

img of target blank html

The solution for this is noted below

target blank html

Solution

   <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>

Try other methods by searching on the site. That is if this doesn’t work