/ Published in: HTML
Two usages of the hcard microformat for a single person and an organisation.
Expand |
Embed | Plain Text
<!-- 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>
Comments
Subscribe to comments
You need to login to post a comment.

Thanks for the splitting up of the hCard for a person vs. an Organisation!
Yes! Thanks so much for showing how one would style an hcard for an organization! I have not found this info anywhere else.