+ 2
What happens if you do not state content models in HTML5?
EX: Saying <body> <H1> Smell me </H1> </body> instead of <body> <header> <H1> Smell me </H1> </header> </body>. Are they just for organization like comments?
1 Resposta
+ 2
<header> is one of the many semantic versions of a plain <div>, so it will generally act as if you put a div there
Allegedly, search engines may find additional value in code that is organized in this way.