hcard-complete-example: Difference between revisions

From Microformats Wiki
Jump to navigation Jump to search
Line 6: Line 6:


== Address (ADR) ==
== Address (ADR) ==
this is a complete example of a adr subsection inside a div element.
this is a complete example of a adr subsection inside a div element.


[[code]]
  <div class="adr" >
 
  <span class="type" >home</span>   
<div class="adr" >
  <span class="post-office-box" >9890</span>
<span class="type" >home</span>   
  <span class="street-address" title="*">2 example road </span>
<span class="post-office-box" >9890</span>
  <span class="extended-address" >flat 7a </span>
<span class="street-address" title="*">2 example road </span>
  <span class="region" >region name</span>
<span class="extended-address" >flat 7a </span>
  <span class="locality" >locality name </span>
<span class="region" >region name</span>
  <span class="postal-code" >TA2 6HU </span>
<span class="locality" >locality name </span>
  <span class="country-name" >United Kingdom </span>
<span class="postal-code" >TA2 6HU </span>
  </div>
<span class="country-name" >United Kingdom </span>
</div>
 
[[code]]


  hCard mimics vCard in the ability to have multiple addresses (adr) defined. for example "work, home, ect" this is represented in the types attribute as follows:
  hCard mimics vCard in the ability to have multiple addresses (adr) defined. for example "work, home, ect" this is represented in the types attribute as follows:
 
[[code]]
<span class="type" >home</span>
<span class="type" >home</span>
[[code]]


or, to represent work  
or, to represent work  
 
[[code]]
<span class="type" >work</span>
<span class="type" >work</span>
[[code]]

Revision as of 23:39, 17 February 2007

An example of a hCard using all available vCard properties

this is the start of a page being worked on by JamieKnight and vbgunz (VictorGonzalez) with the aim to markup and explain and example, which will use all the available properties of hCard from the cheat sheet, and the vCard specification. this page is ongoing.


Address (ADR)

this is a complete example of a adr subsection inside a div element.

 <div class="adr" >
 <span class="type" >home</span>  
 <span class="post-office-box" >9890</span>
 <span class="street-address" title="*">2 example road </span>
 <span class="extended-address" >flat 7a </span>
 <span class="region" >region name</span>
 <span class="locality" >locality name </span>
 <span class="postal-code" >TA2 6HU </span>
 <span class="country-name" >United Kingdom </span>
 </div>
hCard mimics vCard in the ability to have multiple addresses (adr) defined. for example "work, home, ect" this is represented in the types attribute as follows:

<span class="type" >home</span>

or, to represent work

<span class="type" >work</span>