Open In App

HTML <a> href Attribute

The HTML <a> href Attribute is used to specify the URL of the page that the link goes to. When the href attribute is not present in the <a> an element that it will not be a hyperlink. 
This attribute is used to specify a link to any address. This attribute is used along with <a> tag.
Syntax: 
 

<a href="URL"> Link text </a>

Attribute Values:



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




<html>
<body>
    <h1>GeeksForGeeks</h1>
    <h2>
      HTML a href Attribute
  </h2>
    <a href="https://ide.geeksforgeeks.org/">
        Click to open in the same tab
    </a>
    <br>
    <a href="https://ide.geeksforgeeks.org/"
       target="_blank">
        Click to open in a different tab
    </a>
</body>
 
</html>

Output: 



Supported Browsers: The browser supported by HTML <a>href Attribute are listed below: 
 

Article Tags :