Open In App
Related Articles

HTML | target Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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:

  • _blank: It opens the link in a new window.
  • _self: It is the default value. It opens the linked document in the same frame.
  • _parent: It opens the linked document in the parent frameset.
  • _top: It opens the linked document in the full body of the window.
  • framename: It opens the linked document in the named frame.

Example:




<!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://ide.geeksforgeeks.org/"
                    id="GFG" target="_self"
                GeeksforGeeks 
            </a
        </p
    </center
</body
  
</html


Output:

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

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 13 Dec, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials