3
votes

I am converting an HTML4 website to HTML5.

On w3.org validator, I get one error:

Line 19, Column 49: Bad value Distribution for attribute name on element meta: Keyword distribution is not registered.

   <meta name="Distribution" content="Global" />

Is there any substitute for Global distribution?

2

2 Answers

4
votes

dcterms.audience is often used for the purpose of distribution classes. Check out Dublin Core.

2
votes

In HTML5, you can only use those name values that are

So you'd have to register the name value so that it gets added to the wiki.


However, maybe you don't need this meta element at all? Does it have any (internal) use? If not, you could omit it altogether.