Skip to content

Instantly share code, notes, and snippets.

@zerobugs-oficial
Created June 18, 2020 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerobugs-oficial/4ae6db937290723ec14479662180bd1b to your computer and use it in GitHub Desktop.
Save zerobugs-oficial/4ae6db937290723ec14479662180bd1b to your computer and use it in GitHub Desktop.
Schema.org - Aprenda o que é se quiser seu site no Google
<div itemscope itemtype="http://schema.org/Product">
<a itemprop="url" href="url-do-produto">
<div itemprop="name">
<strong>Nome do Produto</strong>
</div>
</a>
<div itemprop="description">Descricao do Produto</div>
<div itemprop="brand" itemscope itemtype="http://schema.org/Organization">
<span itemprop="name">Marca</span>
</div>
<div itemprop="manufacturer" itemscope itemtype="http://schema.org/Organization">
Fabricado por: <span itemprop="name">Fabricante</span>
</div>
<div>Modelo: <span itemprop="model">Modelo</span></div>
<div>ID: <span itemprop="productID">SKU</span></div>
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<span itemprop="ratingValue">4</span> based on <span itemprop="reviewCount">5</span> reviews
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">45,50</span>
<link itemprop="itemCondition" href="http://schema.org/NewCondition" /> New
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment