What address related tags are there for address and formatting and marking my address information in my webpages? I'm looking for XHTML or HTML5 compliant tags.
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a way to play audio on a mobile browser w
- HTML form is not sending $_POST values
- implementing html5 drag and drop photos with knock
-
Why does the box-shadow property not apply to a
There is the semantic
<address>
tag. You may also want to take a look at the hCard microformat.vcard in Microformats - http://microformats.org/wiki/hcard-examples
vcard in Microdata - http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#vcard
vcard in RDFa - http://www.w3.org/TR/vcard-rdf/#Exa
You can use
<address>
tag. Go to following link for details. http://dev.w3.org/html5/spec/the-address-element.html#the-address-element<address>
from W3C:Use
<address>
for addresses that are in fact the relevant contact information for a document or section of a document. Do not use it to represent arbitrary addresses.For more detailed Address information it is recommended to use Microdata. Search Engines recognize Microformats, Microdata and RDFa, but Microdata is recommended.
Here is the Microdata Postal Address page with examples.You will be able to specify
streetAddress
,postalCode
,telephone
etc.