适当的HTML页脚地址格式?

时间:2017-02-20 08:18:41

标签: html footer schema.org semantic-markup microdata

这是正确的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>是否应该包括在内,如果是,哪里是正确的地方,可以使用它们?

1 个答案:

答案 0 :(得分:0)

如果您使用的是schema.org模式,则不必担心您使用的HTML标记。只关心标记parent-&gt;子结构,以便父级定义项目范围,子级定义itemprops。最后使用Google's Structured Data test tool验证您的实施。