Essential href Tag for Website
Essential href Tag SEO Responsive
"The provided
text contains multiple HTML link elements. Here's a breakdown of their
attributes:
<link
color='#b3ca88' href='/safari-pinned-tab.svg' rel='mask-icon'>
This link
defines a mask icon for Safari browser.
<link
href='/apple-touch-icon.png' rel='apple-touch-icon' sizes='76x76'>
This link
specifies the icon to be used for Apple touch devices with a size of 76x76
pixels.
<link
href='/favicon-32x32.png' rel='icon' sizes='32x32' type='image/png'>
This link
sets the favicon for the website with a size of 32x32 pixels.
<link
href='/favicon-44x44.png' rel='icon' sizes='44x44' type='image/png'>
This link
sets an additional favicon for the website with a different size (44x44
pixels).
<link
href='alternate_page.html' media='handheld' rel='alternate'>
This link
specifies an alternate page for handheld devices.
<link
href='Chapter1.html' rel='next'>
This link
indicates that the linked page is the next page in a sequence.
<link
href='Chapter2.html' rel='prev'>
This link
indicates that the linked page is the previous page in a sequence.
<link
href='Chapter3.html' rel='prev'>
This link
also indicates that the linked page is the previous page in a sequence.
<link
href='docA' rel='foo'>
This link
doesn't have a predefined meaning and uses the "foo" relationship.
<link
href='docB' rel='foo'>
This link is
similar to the previous one and also uses the "foo" relationship.
<link
href='http://example.com/' hreflang='am-er' rel='alternate'>
This link
specifies an alternate version of the page in Amharic (Eritrea).
<link
href='http://example.com/' hreflang='am-et' rel='alternate'>
This link
specifies an alternate version of the page in Amharic (Ethiopia).
<link
href='http://example.com/' hreflang='es-es' rel='alternate'>
This link
specifies an alternate version of the page in Spanish (Spain).
<link
href='http://example.com/en-us' hreflang='en' rel='alternate'>
This link
specifies an alternate version of the page in English (United States).
<link
href='http://example.com/fr/' hreflang='fr-fr' rel='alternate'>
This link
specifies an alternate version of the page in French (France).
<link
href='http://example.com/pt/' hreflang='pt-pt' rel='alternate'>
This link
specifies an alternate version of the page in Portuguese (Portugal).
<link
href='https://feeds.feedburner.com/examplename' rel='alternate' type='text/html'>
This link
points to an alternate version of the page provided as an HTML feed.
<link
href='http://example.com/' rel='dns-prefetch'>
This link is
used for DNS prefetching, indicating that the specified domain should be
resolved in advance.
<link
href='https://example.com/favicon.ico' rel='shortcut icon'>
This link
sets the favicon for the website using an absolute URL.
<link
href='https://example.com/french-version' hreflang='fr' rel='alternate'>
This link
specifies an alternate version of the page in French.
<link
href='https://example.com/' rel='alternate' type='application/atom+xml'>
This link
points to an alternate version of the page provided as an Atom XML feed.
<link
href='http://example.com/' rel='alternate' type='application/rss+xml'>
This link
points to an alternate version of the page provided as an RSS XML feed.
<link
href='http://example.com/' rel='canonical'>
This link
specifies the canonical URL for the page, indicating the preferred version.
<link
href='https://example.com/path/to/resource' rel='permissions'>
This link
specifies the URL for a permissions policy document.
<link
href='http://example.com/' target='_blank'>
This link
doesn't have a relationship or specific purpose but has a target attribute set
to open the linked URL in a new tab or window.
<link
href='example' rel='author'>
This link
indicates the author of the page, with the linked text representing the
author's name.
<link
href='https://fonts.googleapis.com/css?family=Roboto:400,700&
display=swap' rel='stylesheet'>
This link imports a stylesheet from Google Fonts, specifically the Roboto font in two weights (400 and 700).
Please note that some links may have custom meanings within a specific website or application. The information provided above describes the common uses and standard interpretations of the HTML link element attributes."
Comments
Post a Comment
Thanks for your Comments.