Open In App

HTML | <base> target Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The <base> target Attribute in HTML is used to specify the default target for all hyperlinks and forms in the webpage. This attribute could also be overridden by the use of the target attribute for each hyperlink and the Form. 

Syntax: 

<base target="_blank|_self|_parent|_top|framename" > 

Attribute Values:

  • _blank: It opens the link in a new window.
  • _self: It opens the linked document in the same frame. it is the default value.
  • _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: This example illustrates the use of target attribute in the <base> element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <base target="_self">
    <title>
        HTML Base target Attribute
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>HTML Base target Attribute</h2>
     
    <a href="ide.geeksforgeeks.org/" alt="GFG">
        Geeks Link
    </a>
</body>
 
</html>                   


Output:

  

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

  • Google Chrome
  • Edge 12.0 and above
  • Firefox
  • Internet Explorer
  • Opera 
  • Safari 

Last Updated : 16 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads