2
I am making a page that presents data of a person. At the beginning of it there is the name and a text, at the end there is the address, email, etc.
I’m using Rich Snippet, but all the examples I find on it, show the whole structure in a single div
which contains all the data of the person, which is not my case.
My HTML looks something like this:
<html>
<row>
...
nome da pessoal
</row>
<row>
...
</row>
<row>
...
</row>
<row>
...
</row>
<row>
endereço, telefone, etc.
</row>
</html>
I’m not going to put it technically as it would be, because the question has to do with Rich Snippet’s architecture and not about the technical part of how it applies.
<html>
<div itemscope itemtype="http://schema.org/Person">
<row>
...
<div itemprop="name"> nome da pessoal </div>
</row>
</div>
<row>
...
</row>
<row>
...
</row>
<row>
...
</row>
<div itemscope itemtype="http://schema.org/Person">
<row>
<div itemprop="telephone"> telefone </div>
<div itemprop="email"> [email protected] </div>
</row>
</div>
</html>
Note that within a single HTML I have two <div itemscope itemtype="http://schema.org/Person">
and that’s the question:
Will be interpreted as two different people or would I have to put everything inside one DIV
?
If you’re a single DIV
, I could have it encompassing all HTML between the initial and final part of the person? (Since the whole page is contains information from only one person)