Answers for "open new tab html a tag"

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
3

link open in new tab html

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

html open link in new tab

<a href="link" target="_blank">This link is in a new tab.</a>
Posted by: Guest on May-24-2021

Browse Popular Code Answers by Language