I wanted to know if repeating itemprop
this way is wrong. In fact, I want to show 3 products and put their itemprop
of each situation:
<img class="card-img-top" src="imagem_do_produto1.jpg" alt="produto1">
<h5 class="card-title" itemprop='makesOffer'>produto1</h5>
<img class="card-img-top" src="imagem_do_produto2.jpg" alt="produto2">
<h5 class="card-title" itemprop='makesOffer'>produto2</h5>
<img class="card-img-top" src="imagem_do_produto3.jpg" alt="produto3">
<h5 class="card-title" itemprop='makesOffer'>produto3</h5>
Is that correct?