html - How to solve this error : Bad value original-source for attribute rel -
i trying validation site w3c getting error:
bad value original-source attribute rel on element link: string original-source not registered keyword.
for:
<link rel="original-source" href="http://themarketmogul.com/" />
can 1 suggest me can error.
the rel
attribute specifies type of link. there limited set of values attribute (the type) accepts. specification defines them in section 4.8.4 link types:
- alternate - gives alternate representations of current document.
- author - gives link author of current document or article.
- bookmark - gives permalink nearest ancestor section.
etc.
this list includes best known stylesheet
type importing css stylesheets. there no "original-source" type. hence, validation error get.
in case looking meta
tag name "original-source" (see codyogden's answer).
Comments
Post a Comment