/ Published in: HTML
Two usages of the hcard microformat for a single person and an organisation.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!-- Use of the vCard(hCard) microformat, used to mark up contact details of people, companies, organisations and places. --> <!-- hCard for person --> <div class="vcard"> <span class="fn n"><!-- FN = Full Structured Name --> </span> <div class="adr"> </div> </div> <!-- hCard for an organisation --> <div class="vcard"> <p class="fn org">Fake Organisation Ltd </p> <div class="adr"> </div> <p>Phone: <span class="tel"> </span> </p> </div>