Open In App

HTML | <link> hreflang Attribute

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. 






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

Article Tags :