Answers for "to open a href in a new tab in webpage"

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
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