user1387682
0
Q:

html link in new tab

<a href="https://www.google.com/" rel="noopener noreferrer" target="_blank">google.com</a>

dont use just target="_blank" without  rel="noopener noreferrer" 
It Makes Your Site Vulnerable to Phishing Attacks
17
<a href="your link" target="_blank">The home page will open in another tab.</a>

//Put target="_blank" as shown
25
<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>
6
<!-- Use the target="_blank" attribute to open a link in a new tab -->
<a href="link" target="_blank">This link is in a new tab.</a>
3
target="_blank"
Example: <a href="http://www.example.com/" target="_blank">Example</a>
7
<a href="https://insert.url" target="_blank">The Website Linked</a>
8
<a href="your link" target="_blank">The home page will open in another tab.</a>
1
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Document</title>
</head>
<body>
    <a href="INSERT LINK" target="_blank">NAME</a>
</body>
</html>

// code by Tyler100OOO (Twitter @TylerCode1)
0
<a href="#" rel="noopener noreferrer" href="link"></a>
0
Open new tab in browser
0

New to Communities?

Join the community