Horje

How to add HTML <a> hreflang Attribute

The hreflang attribute specifies the language of the document in the link:

Definition and Usage

The hreflang attribute specifies the language of the linked document.

This attribute is only used if the href attribute is set.

Note: This attribute is purely advisory.

Browser Support

Syntax

<a hreflang="language_code">

Attribute Values

Value Description
language_code A two-letter language code that specifies the language of the linked document.
To view all available language codes, go to our Language code reference.

 

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The a hreflang attribute</h1>

<p><a hreflang="en" href="https://horje.com">Horje.com</a></p>

</body>
</html>

Output should be:

How to add HTML <a> hreflang Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin