I read microformats for my markup of addresses on the sites I'm building, the general consensus is to mark the address like this ...
<h1 class="org">Orpheum Theatre</h1>
Madison, WI
<div class="address">
<div class="adr">
<div class="street-address">216 State St</div>,
<span class="locality">Madison</span>,
<span class="region">WI</span>
<span class="postal-code"> 53703</span>
<span class="country">United States</span>
</div>
</div>
What interests me is why the combination and coincidence of div / span tags? does it matter or is the only real thing about class tags?
thank
Liam source
share