Open In App

HTML | <a> hreflang Attribute

Last Updated : 12 Jul, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
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: html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML hreflang Attribute
    </title>
</head>

<body>
    <center>
        <h1> 
        GeeksForGeeks 
    </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"> 
                GeeksforGeeks 
            </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

Next Article

Similar Reads