Open In App

HTML | <a> hreflang Attribute

Improve
Improve
Like Article
Like
Save
Share
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:




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

Last Updated : 12 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads