HTML | <a> hreflang Attribute

The HTML hreflang Attribute is used to specify the language for a linked document. It is used only when the href attribute is set.

Syntax:

<a hreflang="language_code">

Attribute Values:

  • language_code: It specify the language code of the Linked Document.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML hreflang Attribute
    </title>
</head>
  
<body>
    <center>
        <h1
        w3wiki 
    </h1>
  
        <h2
        HTML <a> hreflang Attribute 
    </h2>
  
        <p>Welcome to
            <a href="http://www.example.com:4097/test.htm#part2" 
               id="GFG" 
               rel="nofollow" 
               hreflang="en-us" 
               target="_self"
                w3wiki 
            </a>
        </p>
    </center>
</body>
  
</html>


Output:

Supported Browsers: The browsers supported by HTML <a> hreflang Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

Contact Us