Created
June 18, 2020 16:16
-
-
Save zerobugs-oficial/4ae6db937290723ec14479662180bd1b to your computer and use it in GitHub Desktop.
Schema.org - Aprenda o que é se quiser seu site no Google
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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