Talk to people, blz?
My question is, what is the best HTML structure to build a virtual store? Taking into account semantic and SEO standards.
For example:
- Should I use
divs
,li
orarticles
in the product listing? - Or should I use
articles
only on category pages and the remainingdivs
orli
? - Can I use
sections
withinsections
, to separate products on the same page?
Would it be something like this?
...
<section>
<header>
Header Pagina
</header>
<section>
<header>
Categoria 1
</header>
<article>
Produto
</article>
</section>
<section>
<header>
Categoria 2
</header>
<article>
Produto
</article>
</section>
<footer>
</footer>
</section>
...