Answers for "opening a link in new tab in html"

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
1

open link in new tab html

<a href="#" rel="noopener noreferrer" href="link"></a>
Posted by: Guest on October-06-2020
-1

html how to make link open in new tab

<p>Check out <a href="https://www.freecodecamp.org/" target="_blank" rel="noopener noreferrer">freeCodeCamp</a>.</p>
Posted by: Guest on December-10-2020

Code answers related to "opening a link in new tab in html"

Browse Popular Code Answers by Language