Get Rich Snippets
How important are search results to the success of a website? Very important in many ways and one of them is turning sales. Part of this process is writing code that tells search engine spiders what the website pieces are all about and how to index them properly. In this indexing, when done right, it is possible to get the holy grail of search results, rich snippets. Rich snippets are a display option in Google and other search engines that show more options for a website than the standard link to home page and description.
We can use code on our website to get a chance at rich snippets, which came out with the new HTML5 standard. This code is called microdata and helps tells search engines what parts of a website are all about. Below is an example of a before and after look at some code markup using the HTML5 microdata technique.
This code example is how a basic div set up would look:
<div> <h1>Billings Web Design</h1> <span>SkyPoint Studios</span> <span>406-208-8733</span> <a href="https://skypointwebdesignbillingsmontana.com" title="Search Engine Optimization SEO Billings MT">SEO Service Billings MT</a> </div>
add the itemscope element to the HTML tag that encloses information about the item, like this to get rich snippets:
<div itemscope itemtype="https://schema.org/"> <h1>Billings Web Design</h1>
<span itemprop="name">SkyPoint Studios</span> <span itemprop="number">406-208-8733</span>
<a href="https://skypointwebdesignbillingsmontana.com" title="Search Engine Optimization SEO Billings MT">SEO Service Billings MT</a>
</div> It's possible to find more information about how to get rich snippets for your website by going to Google's rich snippets guidelines.
Additionally, schema.org has a great amount of details on how to get the microdata arranged on your site’s HTML pages for the various search engines like Google, Bing, Yahoo, etc.
Have something to add to this story? Do so in the comments below
Leave a Reply
Want to join the discussion?Feel free to contribute!