2
I am marking the products listed on the home, I am using HTML5 to structure the pages, my intention is to define a semantic content. Because then I came across the following possibilities of marking:
Wrap the product showcase with a Section and list the products as a list.
<section>
<h1>Semana da tecnologia</h1> <!-- Titulo da vitrine de produtos-->
<ul>
<li>
<div></div> <!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</li>
<li>
<div></div> <!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</li>
</ul>
</section>
Or instead of list use article for each product
<section>
<h1>Semana da tecnologia</h1> <!-- Titulo da vitrine de produtos-->
<article></article><!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
<article></article><!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</section>
I believe that both forms offer a semantic marking for the content, but which one should choose?
I state the article. See the doc of the schema.org http://schema.org/Product
– Daniel Omine