Open In App

HTML <a> target Attribute

The HTML <a> target Attribute is used to specify where to open the link. 

Syntax:



<a target="_blank | _self | _parent | _top | framename"\> 

Attribute Values: 

Example: In this example, the GeeksforGeeks link will open in the new tab.






<!DOCTYPE html>
<html>
 
<body>
    <h2>GeeksforGeeks</h2>
     
 
<p>Welcome to
        <a href="https://www.geeksforgeeks.org/"
           target="_blank">
            GeeksforGeeks
        </a>
    </p>
 
 
</body>
 
</html>

Output:

HTML <a> target attribute

Example: This example illustrates the use of the Target attribute in the <a> element. 




<!DOCTYPE html>
<html>
 
<head>
    <title> HTML a target Attribute </title>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML a Target Attribute</h2>
         
 
<p>Welcome to
            <a href="https://ide.geeksforgeeks.org/"
               id="GFG"
               target="_self">
                GeeksforGeeks
            </a>
        </p>
 
 
    </center>
</body>
 
</html>

Output:

HTML <a> target attribute

Supported Browsers: 


Article Tags :