Re: Not agree with markup validation service
Philip Taylor <[email protected]>
| Newsgroups | gmane.org.w3c.validator |
|---|---|
| Message-ID | <[email protected]> |
Sergio Pompa wrote:
> I have validated my web page ( www.diing.es ) using markup validation
> service and i don´t understand the mistakes that the service is marking:
>
> As per my knowledge this is not an error. Could you please explain me
> where the mistake is?
<div itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Diing">
<meta itemprop="telephone" content="661761586">
<meta itemprop="description" content="Diing, es una empresa
dedicada a desarrollar páginas web">
<meta itemprop="logo" content="http://www.diing.es">
<!-- FIN MICROFORMATO -->
</div>
occurs in the <HEAD> region; as <DIV> is not allowed within <HEAD>,
<HEAD> is tacitly closed and <BODY> started, after which <DIV> is
re-scanned. Since we are now in the <BODY> region, the </HEAD>
tag is unexpected, as is the following <BODY> tag.
Philip Taylor