Open In App

HTML | <base> target Attribute

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:

Example: This example illustrates the use of target attribute in the <base> element. 






<!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:

Article Tags :