views:

39

answers:

3

Hello, I have used some tools for checking my SEO and I got the result:

"Your website does not take advantage of Microformats. Microformat is a technical semantic markup that can be used to better structure the data submitted to search engines. Thanks to Microformats, Google regularly improves its search results presentation."

Can someone explain me how I can use these microformats and will they improve SEO ?

Regards

+2  A: 

Microformats won't improve your ranking in search engines, however, some microformats like hReview may appear in search results as "rich snippets". See this Google blog post for more information.

DisgruntledGoat
+1  A: 

For implementing, see http://microformats.org/wiki/

And yes, it helps (a little) on SEO, as you provide more meta information to be indexed, as well as shows the care about making this information accessible.

Dave
A: 

There are lots of microformats you can make use of. One I always try to adopt is vcard

            <address class="vcard">
                <span class="org">Business Name</span>,
                <span class="adr">Unit 1234</span>
                <span class="street-address">Your Street level Address</span>,
                <span class="locality">Somewhere</span>,
                <span class="postal-code">P03TC0D3</span>,
                <span class="country-name">UK</span>.
                <span class="tel">01234 567890</span>
            </address>

If you dont want to use the Address element (new in HTML5), then just change it to a DIV and style accordingly. Makes your personal details much more accessible for search engines etc.

LDJ