A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-target-attribute/ below:

HTML target Attribute - GeeksforGeeks

HTML target Attribute

Last Updated : 11 Jul, 2025

The HTML target Attribute is used to specify where to open the linked document. It can be used on various elements such as:

Syntax:

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

Attribute Values:

Example: In this example we demonstrates the target attribute in an anchor (<a>) element. The link opens in the same tab (target="_self") and includes centered headings and a paragraph.

html
<!DOCTYPE html> 
<html> 

<head> 
    <title> 
        HTML target Attribute 
    </title> 
</head> 

<body> 
    <center> 
        <h1>GeeksForGeeks</h1> 

        <h2>HTML Target Attribute</h2> 

        <p>Welcome to 
            <a href= "https://www.geeksforgeeks.org/community/"
                    id="GFG" target="_self"> 
                GeeksforGeeks 
            </a> 
        </p> 
    </center> 
</body> 

</html>

Output:

HTML target Attribute


Supported Browsers: The browser supported by HTML target Attribute are listed below:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4