HTML CSS examples for HTML Tag:link
The hreflang attribute sets the language of the text in the linked document.
Value | Description |
---|---|
language_code | A two-letter language code that specifies the language of the linked document. |
The following hreflang attribute indicates that the linked document is in English:
<!DOCTYPE html> <html> <head> <link href="tag_link.asp" rel="parent" rev="subsection" hreflang="en"> </head><!--from w ww. j a v a 2s. co m--> <body> <p>java2s.com example page.</p> </body> </html>