Answers for "href open in new tab html"

19

open page with html

<!DOCTYPE html>
## Code by Scratchy (Twitter @S_cratchy)
<html>
<body>

<a href="https://www.Google.com" target="_blank">Gooooooooogle!</a> 

</body>
</html>
Posted by: Guest on November-23-2019
84

opem link in new tab html

<a href="your link" target="_blank">The home page will open in another tab.</a>

<!--  Put target="_blank" as shown -->
Posted by: Guest on July-18-2020
3

open new tab html

<a href="your link" target="_blank">The home page will open in another tab.</a>
Posted by: Guest on September-11-2020
10

html open things in new tab

<a href="/" target="_blank">The home page will open in another tab.</a>
Posted by: Guest on February-17-2020
5

a tag open in new tabn

<a target="_blank" href="https://example.com">Link text</a>
Posted by: Guest on August-01-2020
0

how to make html open link in new tab

<!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)
Posted by: Guest on March-13-2020

Browse Popular Code Answers by Language