If you have sections of your page that you dont want google to index, like a comments section that commonly strays off topic, you can use the following HTML comments that the Google bots will listen to:
<p>This part and all previous will be indexed</p>
<!--googleoff:all-->
<p>This part will NOT be indexed</p>
<!--googleon:all-->
<p>This part and rest of the page will be indexed</p>
The all parameter can be changed to any one of the following
index- will not be indexedanchor- any links will not be associated with the target pagesnippet- will not be used to create snippets in search resultsall- index, anchor, and snippet

