在html中编写物理地址的最佳方法是什么?

时间:2009-12-11 09:41:52

标签: html xhtml w3c web-standards

在html中编写物理地址的最佳方法是什么?在语义,可访问和SEO方式

2 个答案:

答案 0 :(得分:11)

使用 Microformats vCard

<div class="vcard">
  <span class="fn">Gregory Peck</span>
  <a class="org url" href="http://www.commerce.net/">CommerceNet</a>
  <div class="adr">
    <span class="type">Work</span>:
    <div class="street-address">169 University Avenue</div>
    <span class="locality">Palo Alto</span>,  
    <abbr class="region" title="California">CA</abbr>  
    <span class="postal-code">94301</span>
    <div class="country-name">USA</div>
  </div>
  <div class="tel">
   <span class="type">Work</span> +1-650-289-4040
  </div>
  <div class="tel">
    <span class="type">Fax</span> +1-650-289-4041
  </div>
  <div>Email: 
   <span class="email">info@commerce.net</span>
  </div>
</div>

可接受:√
语义:我猜..
SEO :√Google announces support for microformats

http://microformats.org/wiki/hcard-examples的更多例子 另请查看可帮助您显示和使用微格式的Oomph Microformats toolkit

答案 1 :(得分:-3)