Open In App

HTML | <link> hreflang Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax: 

<link hreflang="langauge_code">

Attribute Values: It contains the value i.e languagecode which specify the language code for the linked document. 

Example: This example illustrates the use of hreflang attribute in Link Element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <link id="linkid"
          rel="stylesheet"
          type="text/css"
          href="styles.css"
          sizes="16*16"
          hreflang="en-us">
</head>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>
    HTML Link hreflang Attribute
</h2>
 
</body>
 
</html>


Output:

  

Supported Browsers: The browsers supported by HTML link hreflang Attribute are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 6 and above
  • Firefox 1 and above
  • Apple Safari 4 and above
  • Opera 12.1 and above

Last Updated : 06 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads