Bad value copyright for attribute name on element meta: Keyword copyright is not registered.
<meta name="copyright" content="Copyright (c) 2009-2013 Skyline" />
When I try to validate my code, i'm getting this error. Why?
Bad value copyright for attribute name on element meta: Keyword copyright is not registered.
<meta name="copyright" content="Copyright (c) 2009-2013 Skyline" />
When I try to validate my code, i'm getting this error. Why?
HTML specification defines a few names for the name attribute of the meta element.
meta name="copyright"
is not defined in this specification.
Please try this:
<meta name="dcterms.rightsHolder" content="Copyright (c) 2009-2013 Skyline" >
Try
<meta name="dcterms.rightsHolder" content="Copyright (c) 2009-2013 Skyline">
See http://dublincore.org/documents/dcmi-terms/#terms-rightsHolder for full details.
See this post by Karl Horky for a full explanation