Answers for "how to open link in another tab in html"

11

open link in new tab html

<a href="#" target="_blank">By this you can open your document in new tab</a>
<a href="#" target="_self"> by this linked document in the same frame as it was clicked (this is default)</a>
<a href="#" target="_parent">by this linked document in the parent frame</a>
<a href="#" target="_top">Opens the linked document in the full body of the window</a>
Posted by: Guest on September-09-2020
3

link open in new tab html

<a href="https://www.codegrepper.com/" target="_blank">Grep!</a>
Posted by: Guest on June-13-2021
-1

html how to make link open in new tab

<p>Check out <a href="https://www.freecodecamp.org/" target="_blank" rel="noopener noreferrer">freeCodeCamp</a>.</p>
Posted by: Guest on December-10-2020

Code answers related to "how to open link in another tab in html"

Browse Popular Code Answers by Language