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

9

how to make a link in html that opens in a new tab

add attribute : target = "_blank"
Posted by: Guest on June-07-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

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

Browse Popular Code Answers by Language