Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-includes/cache.php on line 99

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-includes/theme.php on line 576

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/exec-php.php on line 22

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/manager.php on line 34

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/manager.php on line 35

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/manager.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/admin.php on line 42

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/admin.php on line 51

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/admin.php on line 52

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/admin.php on line 53

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/ajax.php on line 63

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/cache.php on line 33

Deprecated: Assigning the return value of new by reference is deprecated in /home/bumideas/public_html/wp-content/plugins/exec-php/includes/cache.php on line 42
microformat · Bum Marketing Ideas

SEO using MicroFormat

Sunday, November 9th, 2008

MicroFormat is a way of using standard HTML tags to encode additional information into the page. This could be Geo data, calendar data, etc…
Example
In this example, the contact information is presented as follows:
<div>
<div>Joe Doe</div>
<div>The Example Company</div>
<div>604-555-1234</div>
<a href=”http://example.com/”>http://example.com/</a>
</div>
With hCard microformat markup, that becomes:
<div class=”vcard”>
<div class=”fn”>Joe Doe</div>
<div class=”org”>The Example Company</div>
<div class=”tel”>604-555-1234</div>
<a class=”url” href=”http://example.com/”>http://example.com/</a>
</div>
These specs are evolving [...]