这是正确的HTML地址格式吗?
<div class="" itemscope itemtype="http://schema.org/Florist">
<h5 class="">xxx</h5>
<div class="">
<span itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">xxx</span>
<span itemprop="postalCode">xxx</span>
<span itemprop="addressLocality">xxx</span>
</span>
</div>
<div class="">
<span>Phone: </span><a style="" href="tel:+xxxxxxxx" rel="nofollow"><span itemprop="telephone">+xxxxxxxx</span></a></br>
<span>Email: </span><a href="mailto:info@xxx.cz" itemprop="email">info@xxx.cz</a>
</div>
</div>
或者<p>
和<address>
是否应该包括在内,如果是,哪里是正确的地方,可以使用它们?
答案 0 :(得分:0)
如果您使用的是schema.org模式,则不必担心您使用的HTML标记。只关心标记parent-&gt;子结构,以便父级定义项目范围,子级定义itemprops。最后使用Google's Structured Data test tool验证您的实施。