Question

I'm designing a site for an organization, and only some of the organization's hCard data is included in the site's footer at the moment. Some information, such as fax and a toll free number, has been included only on the home and contact pages.

How would a search engine merge this data? Should multiple hCard containers for the same entity be included on the same page if it's spread out? Should every page include the same hCard in the site-wide footer? How complete should it be?

The following would produce something like "Copyright © 2014 Company Name." Should the site url and entity name be separated? Can it be improved?

<?=$copyright?> <span class="fn org"><a href="<?=base_url()?>" class="url fn org"><?=$company?></a></span>

What about compressing it further by removing the span, as in the following?

<?=$copyright?> <a href="<?=base_url()?>" class="url fn org"><?=$company?></a>
Was it helpful?

Solution

i would make one complete hcard and place it in your footer. and everything that is not desired i would set to display:none, perhaps even text-indent:-9999px, if fitting. considering its the info for the company the site is about, it's not blackhat. you're just utilizing microformats more for bots than humans in this case. that's not a bad thing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top