8
I ask this because it seems that he accuses things that, I think, were not to accuse.
For example:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Titulo do Site</title>
<meta name="description" content="Teste Teste Teste" />
<!--A meta abaixo, diz ao navegador, que terá que inicar na resolução 100%-->
<meta name="viewport" content="width=width-device, initial-scale=1.0" />
</head>
<body>
<!--CABEÇALHO DO NOSSO SITE, COMO MENUS< LOGO, ETC-->
<header>
<h1>Teste do Documento</h1>
<ul>
<li><a href="#home" title="Teste Teste Teste">Home</a></li>
<li><a href="#servicos" title="Teste Teste Teste">Serviços</a></li>
<li><a href="#portifolio" title="Teste Teste Teste">Portfólio</a></li>
<li><a href="#sobre" title="Teste Teste Teste">Sobre mim</a></li>
<li><a href="#contato" title="Teste Teste Teste">Contato</a></li>
</ul>
</header>
<!--CONTEUDO DE NOSSO SITE-->
<main>
<article>
<header>
<h1>Teste Teste Teste</h1>
<p>Teste Teste Teste Teste Teste Teste Teste Teste!</p>
</header>
</article>
</main>
<!--RODAPE DE NOSSO SITE-->
<footer>
<h1>Teste</h1>
<nav>
<h1>Teste</h1>
<p>Teste Teste Teste</p>
</nav>
</footer>
</body>
</html>
It’s an optimized document, but in the validator, it’s from the H1 Warning:
Warning: Consider using the H1 element as a top-level Heading only (all H1 Elements are treated as top-level Headings by Many screen Readers and other tools).
Since now, as HTML5 creates nodes, there is no problem using other H1, within the same page, remembering that it has to be within a header, article, etc...
That answer deserves a reward.
– Oralista de Sistemas