Answers for "html image open new tab"

-1

open image in new tab html

<a href="IMAGE_URL" target="_blank">
  <img alt='img_path' class='img-40 rounded-circle' src='IMAGE_URL' />
</a>
Posted by: Guest on May-29-2021
-2

open website in new tab html

<!-- Use the target="_blank" attribute to open a link in a new tab (it's not mine "Hello There" user came up with it...-->
<a href="link" target="_blank">This link is in a new tab.</a>
Posted by: Guest on April-04-2021

Browse Popular Code Answers by Language