<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DUQBSH08eCp7ImA9WhVUGUs.&quot;"><id>tag:blogger.com,1999:blog-32069983</id><updated>2012-05-25T10:35:59.370-07:00</updated><category term="mobile" /><category term="feedback and communication" /><category term="crawling and indexing" /><category term="accessibility" /><category term="general tips" /><category term="webmaster tools" /><category term="search results" /><category term="languages" /><category term="localization" /><category term="performance" /><category term="events" /><category term="webmaster guidelines" /><category term="advanced" /><category term="sitemaps" /><category term="intermediate" /><category term="products and services" /><category term="beginner" /><title type="text">Google Webmaster Central Blog</title><subtitle type="html">Official news on crawling and indexing sites for the Google index.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://googlewebmastercentral.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Wysz</name><uri>http://www.blogger.com/profile/15951616566442467320</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>486</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/amDG" /><feedburner:info uri="blogspot/amdg" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><logo>http://www.google.com/webmasters/start/images/tools.gif</logo><feedburner:emailServiceId>blogspot/amDG</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;CkAFQX4yfSp7ImA9WhVUGEU.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-2718334056166347454</id><published>2012-05-24T10:31:00.001-07:00</published><updated>2012-05-24T10:31:50.095-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-24T10:31:50.095-07:00</app:edited><title>Multilingual and multinational site annotations in Sitemaps</title><content type="html">&lt;p&gt;Webmaster level: All&lt;/p&gt;

&lt;p&gt;In December 2011 we &lt;a href="http://googlewebmastercentral.blogspot.co.uk/2011/12/new-markup-for-multilingual-content.html"&gt;announced&lt;/a&gt; annotations for sites that target users in many languages and, optionally, countries. These annotations define a cluster of equivalent pages that target users around the world, and were implemented using &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=189077"&gt;rel-alternate-hreflang link elements&lt;/a&gt; in the HTML of each page in the cluster.&lt;/p&gt;

&lt;p&gt;Based on webmaster feedback and other considerations, today we’re adding support for specifying the rel-alternate-hreflang annotations in &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156184"&gt;Sitemaps&lt;/a&gt;. Using Sitemaps instead of HTML link elements offers many advantages including smaller page size and easier deployment for some websites.&lt;/p&gt;

&lt;p&gt;To see how this works, let's take a simple example: We wish to specify that for the URL http://www.example.com/en, targeting English language users, the equivalent URL targeting German language speakers http://www.example.com/de. Up till now, the only way to add such annotation is to use a link element, either as an HTTP header or as HTML elements on both URLs like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;link rel=&amp;quot;alternate&amp;quot; hreflang=&amp;quot;en&amp;quot; href=&amp;quot;http://www.example.com/en&amp;quot; &amp;gt;
&amp;lt;link rel=&amp;quot;alternate&amp;quot; hreflang=&amp;quot;de&amp;quot; href=&amp;quot;http://www.example.com/de&amp;quot; &amp;gt;&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;As of today, you can alternately use the following equivalent markup in Sitemaps:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;url&amp;gt;
  &amp;lt;loc&amp;gt;http://www.example.com/en&amp;lt;/loc&amp;gt;
  &lt;strong&gt;&amp;lt;xhtml:link 
    rel=&amp;quot;alternate&amp;quot;
    hreflang=&amp;quot;de&amp;quot;
    href=&amp;quot;http://www.example.com/de&amp;quot; /&amp;gt;&lt;/strong&gt;
  &lt;strong&gt;&amp;lt;xhtml:link
    rel=&amp;quot;alternate&amp;quot;
    hreflang=&amp;quot;en&amp;quot;
    href=&amp;quot;http://www.example.com/en&amp;quot; /&amp;gt;&lt;/strong&gt;
&amp;lt;/url&amp;gt;
&amp;lt;url&amp;gt;
  &amp;lt;loc&amp;gt;http://www.example.com/de&amp;lt;/loc&amp;gt;
  &lt;strong&gt;&amp;lt;xhtml:link
    rel=&amp;quot;alternate&amp;quot;
    hreflang=&amp;quot;de&amp;quot;
    href=&amp;quot;http://www.example.com/de&amp;quot; /&amp;gt;&lt;/strong&gt;
  &lt;strong&gt;&amp;lt;xhtml:link
    rel=&amp;quot;alternate&amp;quot;
    hreflang=&amp;quot;en&amp;quot;
    href=&amp;quot;http://www.example.com/en&amp;quot; /&amp;gt;&lt;/strong&gt;
&amp;lt;/url&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Briefly, the new Sitemaps tags shown in bold function in the same way as the HTML link tags, with both using the same attributes. The full technical details of how the annotations are implemented in Sitemaps, including how to implement the xhtml namespace for the link tag, are in our &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=2620865"&gt;new Help Center article&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;A more detailed example can be found in our new Help Center article, and if you need more help, please ask in our brand new &lt;a href="https://productforums.google.com/forum/#!categories/webmasters/internationalization"&gt;internationalization help forum&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/115984868678744352358/posts" rel="author"&gt;Pierre Far&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-2718334056166347454?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=-teftNqWbuE:T_P8Z89wWn8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/-teftNqWbuE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/2718334056166347454/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=2718334056166347454" title="22 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2718334056166347454?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2718334056166347454?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/-teftNqWbuE/multilingual-and-multinational-site.html" title="Multilingual and multinational site annotations in Sitemaps" /><author><name>Pierre Far</name><uri>http://www.blogger.com/profile/08752706370801911044</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/_h744LYHiHC8/TUwNrw_sp5I/AAAAAAAAAAM/wkLbMP57Z20/s1600/AIbEiAIAAABECOrD9fLP1vG9oQEiC3ZjYXJkX3Bob3RvKig5ZTc3Yjg3ZDgxMzY0OWIyYzhhYTlkNzk4MTIxNzJjN2ViMDU1YmNlMAHL8K-w6eduqsNiiiCcNUs-Xgo1Mg" /></author><thr:total>22</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/multilingual-and-multinational-site.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkQBQnwyeCp7ImA9WhVUF08.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-7393586173168469492</id><published>2012-05-22T12:16:00.000-07:00</published><updated>2012-05-22T13:59:13.290-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-22T13:59:13.290-07:00</app:edited><title>Introducing Webmaster Academy</title><content type="html">Webmaster Level: Beginner
&lt;br /&gt;
&lt;br /&gt;
Looking through all of the information in &lt;a href="http://www.google.com/webmasters/"&gt;Webmaster Central&lt;/a&gt; can feel overwhelming, especially if you’re just getting started with a website. This is why we’re excited to introduce a new set of educational materials in a program called &lt;a href="http://support.google.com/webmasters/bin/static.py?hl=en&amp;amp;page=checklist.cs&amp;amp;tab=1095542"&gt;Webmaster Academy&lt;/a&gt;. Webmaster Academy provides practical and easy-to-understand lessons for beginner webmasters to help you improve your site with topics like getting your site in our index, providing search engines with helpful information about your video and image content, and understanding &lt;a href="https://www.google.com/webmasters/tools/"&gt;Webmaster Tools&lt;/a&gt; features.
&lt;br /&gt;
&lt;br /&gt;
We’ve organized the content to represent what beginner webmasters should know in a way that’s both structured and modular, meaning you can go through the whole curriculum, or pick and choose your own path. Once you’ve read the articles, you can easily delve deeper into each topic, as we provide links to more in-depth articles. Most lessons are also accompanied by a video from the &lt;a href="http://www.youtube.com/user/GoogleWebmasterHelp"&gt;Webmaster Central YouTube Channel&lt;/a&gt;. If you’re looking to understand search and improve your site, &lt;a href="http://support.google.com/webmasters/bin/static.py?hl=en&amp;amp;page=checklist.cs&amp;amp;tab=1095542"&gt;Webmaster Academy&lt;/a&gt; is for you!
&lt;br /&gt;
&lt;br /&gt;
Have feedback? Excellent. Post it in our &lt;a href="http://productforums.google.com/forum/#forum/webmasters"&gt;Webmaster Help Forum&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by Julian Prentice, Search Quality Team&lt;/span&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Contributors: Oliver Barrett &amp;amp; Alexi Douvas, Search Quality Team&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-7393586173168469492?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=ZikrMXM44F0:16-TraxWcQU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/ZikrMXM44F0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/7393586173168469492/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=7393586173168469492" title="15 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7393586173168469492?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7393586173168469492?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/ZikrMXM44F0/introducing-webmaster-academy.html" title="Introducing Webmaster Academy" /><author><name>Jonathan Simon</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="25" src="http://1.bp.blogspot.com/_pHpYpU4sgSI/SMhyM5_f0ZI/AAAAAAAAAKg/YJ8TC10DZSs/S220/possibly-habitable.jpg" /></author><thr:total>15</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/introducing-webmaster-academy.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYNR3o8cCp7ImA9WhVUEkQ.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-1404381690809927103</id><published>2012-05-17T15:00:00.000-07:00</published><updated>2012-05-17T15:03:16.478-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-17T15:03:16.478-07:00</app:edited><title>Making more pages load instantly</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
At Google we're obsessed with speed.  We've long known that even seemingly minor speed increases can have &lt;a href="http://googleresearch.blogspot.com/2009/06/speed-matters.html"&gt;surprisingly large impacts&lt;/a&gt; on user engagement and happiness.  About a year ago we &lt;a href="http://googlewebmastercentral.blogspot.com/2011/06/announcing-instant-pages.html"&gt;rolled out Instant Pages&lt;/a&gt; in pursuit of that goal.  Instant Pages makes use of prerendering technology in Chrome to make your site appear to load instantly in some cases, with no need for any extra work on your part. Here's a video of it in action:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;iframe width="565" height="390" src="http://www.youtube.com/embed/_Jn93FDx9oI" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
We've been closely watching performance and listening to webmaster feedback. Since Instant Pages rolled out we've saved more than a thousand years of ours users' time. We're very happy with the results so far, and we'll be gradually increasing how often we trigger the feature.&lt;br /&gt;
&lt;br /&gt;
In the vast majority of cases, webmasters don't have to do anything for their sites to work correctly with prerendering. As we mentioned in our &lt;a href="http://googlewebmastercentral.blogspot.com/2011/06/announcing-instant-pages.html"&gt;initial announcement of Instant Pages&lt;/a&gt;, search traffic will be measured in Webmaster Tools just like before this feature: only results the user visits will be counted. If your site keeps track of pageviews on its own, you might be interested in the &lt;a href="https://developers.google.com/chrome/whitepapers/pagevisibility"&gt;Page Visibility API&lt;/a&gt;, which allows you to detect when prerendering is occurring and factor those out of your statistics. If you use an ads or analytics package, check with them to see if their solution is already prerender-aware; if it is, in many cases you won't need to make any changes at all. If you're interested in triggering Chrome's prerendering within your own site, see the &lt;a href="https://developers.google.com/chrome/whitepapers/prerender"&gt;Prerendering in Chrome&lt;/a&gt; article.&lt;br /&gt;
&lt;br /&gt;
Instant Pages means that users arrive at your site happier and more engaged, which is great for everyone.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/102497646948960935530/posts"&gt;Ziga Mahkovec&lt;/a&gt; - Software Engineer, Instant Pages&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-1404381690809927103?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=src541jBU3Q:ABHvhiNm0FM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/src541jBU3Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/1404381690809927103/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=1404381690809927103" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1404381690809927103?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1404381690809927103?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/src541jBU3Q/making-more-pages-load-instantly.html" title="Making more pages load instantly" /><author><name>Gary Illyes</name><uri>http://www.blogger.com/profile/16293019109920558435</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/-E8DuVr0oOx0/Td4WH0kyL8I/AAAAAAAAACM/e-BbpHkWnkk/s1600/AIbEiAIAAABECL6Gx6Luru7QtAEiC3ZjYXJkX3Bob3RvKihlZGIxYzRlN2NlZTNkOTlmMGZmZjlhZTY0MGJhMmY2ZjExNzM0NDE3MAGr5OHKn-IJgc-ZJei0LNKDwxm5CQ" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/_Jn93FDx9oI/default.jpg" height="72" width="72" /><thr:total>6</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/making-more-pages-load-instantly.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkIDQHcyfSp7ImA9WhVVFUU.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-2740216939144509785</id><published>2012-05-08T14:02:00.000-07:00</published><updated>2012-05-09T09:22:51.995-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-09T09:22:51.995-07:00</app:edited><title>Sorting and Filtering Results in Custom Search</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;i&gt;(Cross-posted on the &lt;a href="http://googlecustomsearch.blogspot.com/2012/05/sorting-and-filtering-results-in-custom.html"&gt;Custom Search Blog&lt;/a&gt;)&lt;/i&gt; &lt;br /&gt;
&lt;br /&gt;
Using &lt;a href="http://www.google.com/cse/"&gt;Custom Search Engine&lt;/a&gt; (CSE), you can create rich search experiences that make it easier for visitors to find the information they’re looking for on your site. Today we’re announcing two improvements to sorting and filtering of search results in CSE. 
&lt;br /&gt;
&lt;br /&gt;
First, CSE now supports UI-based &lt;a href="http://support.google.com/customsearch/bin/answer.py?hl=en&amp;amp;answer=2549537"&gt;results sorting&lt;/a&gt;, which you can enable in the Basics tab of the CSE control panel. Once you’ve updated the CSE element code on your site, a “sort by” picker will become visible at the top of the results section.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-t2ECWuvnWoA/T6l5uMal29I/AAAAAAAAADE/_E2NM1iTkhY/s1600/cse_sort_picker2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="126" src="http://4.bp.blogspot.com/-t2ECWuvnWoA/T6l5uMal29I/AAAAAAAAADE/_E2NM1iTkhY/s400/cse_sort_picker2.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
By default CSE supports sorting by date and relevance. In the control panel, you can specify additional “sort by” keys that are based on the structure of your site’s content, giving users more options to find the results that are most relevant to them. For example, if you’ve marked up pages for &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=146750"&gt;product rich snippets&lt;/a&gt;, you could enable sorting based on price as shown below:&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-Y0iLJvnDD5I/T6l6Bk02dcI/AAAAAAAAADM/d68G-ojpbgE/s1600/cse_results_sorting.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="309" src="http://3.bp.blogspot.com/-Y0iLJvnDD5I/T6l6Bk02dcI/AAAAAAAAADM/d68G-ojpbgE/s320/cse_results_sorting.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Second, we’re introducing compact queries for &lt;a href="https://developers.google.com/custom-search/docs/structured_search#filter_by_attribute"&gt;filtering by attribute&lt;/a&gt;. Currently you can issue a query like &lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace; font-size: 100%;"&gt;[more:pagemap:product-description:search more:pagemap:product-description:engine] &lt;/span&gt;&lt;br /&gt;
which will only show pages with a ‘product-description’ attribute that contains both ‘search’ and ‘engine’.
&lt;br /&gt;
&lt;br /&gt;
With a compact query, you can issue the same request as: &lt;br /&gt;
&lt;span style="font-family: 'Courier New', Courier, monospace;"&gt;[more:p:product-description:search*engine]&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
We hope these new features help you create richer and more useful search experiences for your visitors. As always, if you have any questions or feedback please let us know via our &lt;a href="http://productforums.google.com/forum/#!forum/customsearch"&gt;Help Forum&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/u/1/109448640522131155324/posts"&gt;Roger Wang&lt;/a&gt;, Software Engineer&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-2740216939144509785?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=_r7X16GZBHQ:X3uGy_W3SxU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/_r7X16GZBHQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/2740216939144509785/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=2740216939144509785" title="8 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2740216939144509785?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2740216939144509785?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/_r7X16GZBHQ/sorting-and-filtering-results-in-custom.html" title="Sorting and Filtering Results in Custom Search" /><author><name>Anthony Chavez</name><uri>http://www.blogger.com/profile/02556445120622686505</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-t2ECWuvnWoA/T6l5uMal29I/AAAAAAAAADE/_E2NM1iTkhY/s72-c/cse_sort_picker2.png" height="72" width="72" /><thr:total>8</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/sorting-and-filtering-results-in-custom.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0INRns6eCp7ImA9WhVVFEk.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-8367187779858300450</id><published>2012-05-07T16:10:00.000-07:00</published><updated>2012-05-07T18:46:37.510-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-07T18:46:37.510-07:00</app:edited><title>Navigation, Dashboard and Home page</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
After announcing &lt;a href="http://googlewebmastercentral.blogspot.com/2012/04/webmaster-tools-spring-cleaning.html"&gt;Webmaster Tools spring cleaning&lt;/a&gt; earlier this quarter, it’s time to do the job. There are a few changes coming along: an updated navigation, revamped dashboard, and a compact view for the home page site-list.&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-EWgaHYq6VMc/T6hRsCGsMfI/AAAAAAAAAkg/kR-7DKgxa6M/s1600/new-dashboard.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="174" src="http://4.bp.blogspot.com/-EWgaHYq6VMc/T6hRsCGsMfI/AAAAAAAAAkg/kR-7DKgxa6M/s320/new-dashboard.png" width="320" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;b id="internal-source-marker_0.34274147590622306" style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; font-family: Times; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="background-color: transparent; color: black; font-family: Arial; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"&gt;Here's the new sample Webmaster Tools Dashboard for www.example.com&lt;/span&gt;&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
We’ve regrouped the features in Webmaster Tools to create an improved navigation structure (shown on the left-hand side of the above image).  We distinguished the following groups: Configuration, Health, Traffic and Optimization. Each group represents a related set of functionality: 
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Configuration: Things you configure and generally don’t change very often.&lt;/li&gt;
&lt;li&gt;Health: Where you look to make sure things are OK.&lt;/li&gt;
&lt;li&gt;Traffic: Where you go to understand how your site is doing in Google search, who’s linking to you; where you can explore the data about your site. &lt;/li&gt;
&lt;li&gt;Optimization: Where you can find ideas to enhance your site, which enables us to better understand and represent your site in Search and other services.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
If you have a moment, please take time to familiarize yourself with the new Webmaster Tools navigation. Some features were slightly renamed, such as HTML Suggestions became HTML Improvements, however the functionality remains the same.
&lt;br /&gt;
&lt;br /&gt;
Hoping you’ll find the new navigation useful, we also think you’ll like the new Dashboard. At the top of the Dashboard you can see recent, important, prioritized messages regarding your site.
Just below that, you’ll find another section which provides a brief summary of the current status of your site. There are three widgets displayed: Crawl Errors, Search Queries and Sitemaps, each representing a different navigation group:  Health, Traffic and Optimization (respectively).
We know your time is valuable. With the new Dashboard, we've surfaced more messages and charts to let you see how your site is doing at a glance. Take a quick look before diving into the details.&lt;br /&gt;
&lt;br /&gt;
Finally, those of you who manage a large number of sites can choose to view your site-list in a 'Compact' layout, without the large site-preview thumbnails. Don't worry, if you want the more expanded layout you can always switch back.
&lt;br /&gt;
&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-UOcKQVlhSI8/T6hTh-w39VI/AAAAAAAAAks/QPUpBVEqkgU/s1600/compact-home-page.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="293" src="http://1.bp.blogspot.com/-UOcKQVlhSI8/T6hTh-w39VI/AAAAAAAAAks/QPUpBVEqkgU/s400/compact-home-page.png" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;&lt;b id="internal-source-marker_0.34274147590622306" style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; font-family: Times; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div dir="ltr" style="margin-bottom: 0pt; margin-top: 0pt; text-align: center;"&gt;
&lt;b id="internal-source-marker_0.34274147590622306" style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; font-family: Times; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="background-color: transparent; color: black; font-family: Arial; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;"&gt;Compact layout of the Home page&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;b id="internal-source-marker_0.34274147590622306" style="-webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; color: black; font-family: Times; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;/b&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
If you have questions or comments about these changes please post them in our &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#%21forum/webmasters"&gt;Help Forum&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/109580420505325614989/"&gt;Kamila Primke&lt;/a&gt;, Software Engineer, Webmaster Tools&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-8367187779858300450?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=r9j2rEviD5g:3lBqZjMbB_o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/r9j2rEviD5g" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/8367187779858300450/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=8367187779858300450" title="22 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8367187779858300450?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8367187779858300450?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/r9j2rEviD5g/navigation-dashboard-and-home-page.html" title="Navigation, Dashboard and Home page" /><author><name>Jonathan Simon</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="25" src="http://1.bp.blogspot.com/_pHpYpU4sgSI/SMhyM5_f0ZI/AAAAAAAAAKg/YJ8TC10DZSs/S220/possibly-habitable.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-EWgaHYq6VMc/T6hRsCGsMfI/AAAAAAAAAkg/kR-7DKgxa6M/s72-c/new-dashboard.png" height="72" width="72" /><thr:total>22</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/navigation-dashboard-and-home-page.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4MQXc9eSp7ImA9WhVVEEg.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-3449266091319277595</id><published>2012-05-02T08:46:00.000-07:00</published><updated>2012-05-03T07:56:20.961-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-03T07:56:20.961-07:00</app:edited><title>Coding guidelines for HTML and CSS</title><content type="html">Webmaster level: All&lt;br /&gt;&lt;br /&gt;

Great code has many attributes. It’s effective, efficient, maintainable, elegant. When working on code with many developers and teams and maybe even companies, great code needs to also be consistent and easy to understand. For that purpose there are style guides. We use style guides for a lot of languages, and our newest public style guide is the &lt;a href="http://google-styleguide.googlecode.com/svn/trunk/htmlcssguide.xml"&gt;&lt;strong&gt;Google HTML and CSS Style Guide&lt;/strong&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;

Our HTML and CSS Style Guide, just like &lt;a href="http://code.google.com/p/google-styleguide/"&gt;other Google style guides&lt;/a&gt;, deals with a lot of formatting-related matters. It also hints at best practices so to encourage developers to go beyond indentation. Many style guide authors know the underlying motivation from the question whether to &lt;em&gt;describe&lt;/em&gt; the code they write—or to &lt;em&gt;prescribe&lt;/em&gt; what code they want to write. Not surprisingly then, in our HTML and CSS style guide you’ll find both (as much as you’ll still find a lot of different development styles in our not entirely small code base).&lt;br /&gt;&lt;br /&gt;

At this time we only want to introduce you to this new style guide. We hope to share more about its design decisions and future updates with you. In the meantime please share your thoughts and experiences, and as with the other style guides, feel free to use our style guide for your own projects, as you see fit.&lt;br /&gt;&lt;br /&gt;

Written by &lt;a href="https://plus.google.com/114697646623413794481"&gt;Jens O. Meiert&lt;/a&gt;, Senior Web Architect, Google Webmaster Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-3449266091319277595?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=9R05sp7fkRs:0HiWbCNNj7Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/9R05sp7fkRs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/3449266091319277595/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=3449266091319277595" title="31 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3449266091319277595?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3449266091319277595?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/9R05sp7fkRs/coding-guidelines-for-html-and-css.html" title="Coding guidelines for HTML and CSS" /><author><name>Jens</name><uri>http://www.blogger.com/profile/04284955999563123937</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>31</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/05/coding-guidelines-for-html-and-css.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04AQngzcSp7ImA9WhVWGUU.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-535788256010227098</id><published>2012-04-30T18:07:00.000-07:00</published><updated>2012-05-02T13:19:03.689-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-02T13:19:03.689-07:00</app:edited><title>Responsive design – harnessing the power of media queries</title><content type="html">&lt;span style="color: #666666;"&gt;Webmaster Level: Intermediate / Advanced&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;
We love data, and spend a lot of time monitoring the analytics on our websites. Any web developer doing the same will have noticed the increase in traffic from mobile devices of late. Over the past year we’ve seen many key sites garner a significant percentage of pageviews from smartphones and tablets. These represent large numbers of visitors, with sophisticated browsers which support the latest HTML, CSS, and JavaScript, but which also have limited screen space with widths as narrow as 320 pixels.
&lt;br /&gt;
&lt;br /&gt;
Our commitment to &lt;a href="http://www.google.com/accessibility/"&gt;accessibility&lt;/a&gt; means we strive to provide a good browsing experience for all our users. We faced a stark choice between creating mobile specific websites, or adapting existing sites and new launches to render well on both desktop and mobile. Creating two sites would allow us to better target specific hardware, but maintaining a single shared site preserves a canonical URL, avoiding any complicated redirects, and simplifies the sharing of web addresses. With a mind towards maintainability we leant towards using the same pages for both, and started thinking about how we could fulfill the following guidelines:
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;b&gt;Our pages should render legibly at any screen resolution&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;We mark up one set of content, making it viewable on any device&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;We should never show a horizontal scrollbar, whatever the window size&lt;/b&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-JPZfFJzcakc/T58dQHAeD_I/AAAAAAAAK8c/qNszHAhR2Ek/s1600/responsive_chrome.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img height="390" src="http://2.bp.blogspot.com/-JPZfFJzcakc/T58dQHAeD_I/AAAAAAAAK8c/qNszHAhR2Ek/s400/responsive_chrome.jpg" style="border: 0 !important;" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;i style="display: block; margin: 0px auto 10px; text-align: center;"&gt;Stacked content, tweaked navigation and rescaled images – &lt;a href="http://www.google.com/intl/en/chrome/devices/features.html"&gt;Chromebooks&lt;/a&gt;&lt;/i&gt;
&lt;br /&gt;
&lt;div style="font-size: 16px; font-weight: bold;"&gt;
Implementation&lt;/div&gt;
&lt;br /&gt;
As a starting point, simple, semantic markup gives us pages which are more flexible and easier to reflow if the layout needs to be changed. By ensuring the stylesheet enables a &lt;a href="http://www.alistapart.com/articles/responsive-web-design/"&gt;liquid layout&lt;/a&gt;, we're already on the road to mobile-friendliness. Instead of specifying &lt;code&gt;width&lt;/code&gt; for container elements, we started using &lt;code&gt;max-width&lt;/code&gt; instead. In place of &lt;code&gt;height&lt;/code&gt; we used &lt;code&gt;min-height&lt;/code&gt;, so larger fonts or multi-line text don’t break the container’s boundaries. To prevent fixed width images “propping open” liquid columns, we apply the following CSS rule:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;img {
  max-width: 100%;
}&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
Liquid layout is a good start, but can lack a certain finesse. Thankfully &lt;a href="http://www.w3.org/TR/css3-mediaqueries/"&gt;media queries&lt;/a&gt; are now &lt;a href="http://www.caniuse.com/#search=media+queries"&gt;well-supported in modern browsers&lt;/a&gt; including IE9+ and most mobile devices. These can make the difference between a site that degrades well on a mobile browser, vs. one that is enhanced to take advantage of the streamlined UI. But first we have to take into account how smartphones represent themselves to web servers.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="font-size: 16px; font-weight: bold;"&gt;
Viewports&lt;/div&gt;
&lt;br /&gt;
When is a pixel not a pixel? When it’s on a smartphone. By default, smartphone browsers pretend to be high-resolution desktop browsers, and lay out a page as if you were viewing it on a desktop monitor. This is why you get a tiny-text “overview mode” that’s impossible to read before zooming in. The &lt;a href="http://developer.android.com/guide/webapps/targeting.html"&gt;default viewport width&lt;/a&gt; for the default Android browser is 800px, and 980px for iOS, regardless of the number of &lt;a href="http://en.wikipedia.org/wiki/List_of_displays_by_pixel_density"&gt;actual physical pixels&lt;/a&gt; on the screen.
&lt;br /&gt;
&lt;br /&gt;
In order to trigger the browser to render your page at a more readable scale, you need to use the viewport meta element:

&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
Mobile screen resolutions vary widely, but most modern smartphone browsers currently report a standard &lt;code&gt;device-width&lt;/code&gt; in the region of 320px. If your mobile device actually has a width of 640 physical pixels, then a 320px wide image would be sized to the full width of the screen, using double the number of pixels in the process. This is also the reason why text looks so much crisper on the small screen – double the pixel density as compared to a standard desktop monitor.
&lt;br /&gt;
&lt;br /&gt;
The useful thing about setting the &lt;code&gt;width&lt;/code&gt; to &lt;code&gt;device-width&lt;/code&gt; in the viewport meta tag is that it updates when the user changes the orientation of their smartphone or tablet. Combining this with media queries allows you to tweak the layout as the user rotates their device:

&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
@media screen and (min-width:480px) and (max-width:800px) {
&amp;nbsp;&amp;nbsp;/* Target landscape smartphones, portrait tablets, narrow desktops

&amp;nbsp;&amp;nbsp;*/
}

@media screen and (max-width:479px) {
&amp;nbsp;&amp;nbsp;/* Target portrait smartphones */
}
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
In reality you may find you need to use different breakpoints depending on how your site flows and looks on various devices. You can also use the &lt;code&gt;orientation&lt;/code&gt; media query to target specific orientations without referencing pixel dimensions, &lt;a href="http://caniuse.com/#search=orientation"&gt;where supported&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
@media all and (orientation: landscape) {
&amp;nbsp;&amp;nbsp;/* Target device in landscape mode */
}

@media all and (orientation: portrait) {
&amp;nbsp;&amp;nbsp;/* Target device in portrait mode */
}&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-dYbonxwoqWU/T58dTMFtthI/AAAAAAAAK8s/54oaQ2VoDg8/s1600/responsive_cultural.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img height="400" src="http://4.bp.blogspot.com/-dYbonxwoqWU/T58dTMFtthI/AAAAAAAAK8s/54oaQ2VoDg8/s400/responsive_cultural.jpg" style="border: 0 !important;" width="381" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;i style="display: block; margin: 0px auto 10px; text-align: center;"&gt;Stacked content, smaller images – &lt;a href="http://www.google.com/culturalinstitute"&gt;Cultural Institute&lt;/a&gt;&lt;/i&gt;
&lt;br /&gt;
&lt;div style="font-size: 16px; font-weight: bold;"&gt;
A media queries example&lt;/div&gt;
&lt;br /&gt;
We recently re-launched the &lt;a href="http://www.google.com/about/"&gt;About Google&lt;/a&gt; page. Apart from setting up a liquid layout, we added a few media queries to provide an improved experience on smaller screens, like those on a tablet or smartphone.
&lt;br /&gt;
&lt;br /&gt;
Instead of targeting specific device resolutions we went with a relatively broad set of breakpoints. For a screen resolution wider than 1024 pixels, we render the page as it was originally designed, according to our 12-column grid. Between 801px and 1024px, you get to see a slightly squished version thanks to the liquid layout.
&lt;br /&gt;
&lt;br /&gt;
Only if the screen resolution drops to 800 pixels will content that’s not considered core content be sent to the bottom of the page:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
@media screen and (max-width: 800px) {
  /* specific CSS */
}
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
With a final media query we enter smartphone territory:
&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;
@media screen and (max-width: 479px) {
  /* specific CSS */
}
&lt;/code&gt;&lt;/pre&gt;
&lt;br /&gt;
&lt;br /&gt;
At this point, we’re not loading the large image anymore and we stack the content blocks. We also added additional whitespace between the content items so they are more easily identified as different sections.
&lt;br /&gt;
&lt;br /&gt;
With these simple measures we made sure the site is usable on a wide range of devices.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-PU9-y7MJB_U/T58dS0jUfWI/AAAAAAAAK8k/Niann_r6Wjg/s1600/responsive_about.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img height="400" src="http://1.bp.blogspot.com/-PU9-y7MJB_U/T58dS0jUfWI/AAAAAAAAK8k/Niann_r6Wjg/s400/responsive_about.jpg" style="border: 0 !important;" width="396" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;i style="display: block; margin: 0px auto 10px; text-align: center;"&gt;Stacked content and the removal of large image – &lt;a href="http://www.google.com/about/"&gt;About Google&lt;/a&gt;&lt;/i&gt;
&lt;br /&gt;
&lt;div style="font-size: 16px; font-weight: bold;"&gt;
Conclusion&lt;/div&gt;
&lt;br /&gt;
It’s worth bearing in mind that there’s no simple solution to making sites accessible on mobile devices and narrow viewports. Liquid layouts are a great starting point, but some design compromises may need to be made. Media queries are a useful way of adding polish for many devices, but remember that &lt;a href="http://caniuse.com/#search=media%20queries"&gt;25% of visits&lt;/a&gt; are made from those desktop browsers that do not currently support the technique and there are some &lt;a href="http://www.slideshare.net/guypod/performance-implications-of-mobile-design/28"&gt;performance implications&lt;/a&gt;. And if you have a fancy widget on your site, it might work beautifully with a mouse, but not so great on a touch device where fine control is more difficult.
&lt;br /&gt;
&lt;br /&gt;
The key is to test early and test often. Any time spent surfing your own sites with a smartphone or tablet will prove invaluable. When you can’t test on real devices, use the &lt;a href="http://developer.android.com/sdk/index.html"&gt;Android SDK&lt;/a&gt; or &lt;a href="http://developer.apple.com/devcenter/ios/index.action"&gt;iOS Simulator&lt;/a&gt;. Ask friends and colleagues to view your sites on their devices, and watch how they interact too.
&lt;br /&gt;
&lt;br /&gt;
Mobile browsers are a great source of new traffic, and learning how best to support them is an exciting new area of professional development.
&lt;br /&gt;
&lt;br /&gt;
Some more examples of responsive design at Google:
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.google.com/about/"&gt;www.google.com/about/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.google.com/goodtoknow"&gt;www.google.com/goodtoknow&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.google.com/culturalinstitute"&gt;www.google.com/culturalinstitute&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.google.com/events/sciencefair"&gt;www.google.com/events/sciencefair&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.google.com/intl/en/chrome/devices"&gt;www.google.com/intl/en/chrome/devices&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://picasa.google.com/"&gt;picasa.google.com&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
Written by &lt;a href="https://plus.google.com/u/0/111296156124188875659/posts"&gt;Rupert Breheny&lt;/a&gt;, &lt;a href="https://plus.google.com/u/0/114073068697999578001/posts"&gt;Edward Jung&lt;/a&gt;, &amp;amp; &lt;a href="https://plus.google.com/u/0/101131853496921328128/posts"&gt;Matt Zürrer&lt;/a&gt;, Google Webmaster Team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-535788256010227098?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=_7UrUsi-NX0:PMKPMTglA6M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/_7UrUsi-NX0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/535788256010227098/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=535788256010227098" title="24 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/535788256010227098?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/535788256010227098?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/_7UrUsi-NX0/responsive-design-harnessing-power-of.html" title="Responsive design – harnessing the power of media queries" /><author><name>Kathryn Cullen</name><uri>http://www.blogger.com/profile/12416800386649734911</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-JPZfFJzcakc/T58dQHAeD_I/AAAAAAAAK8c/qNszHAhR2Ek/s72-c/responsive_chrome.jpg" height="72" width="72" /><thr:total>24</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/responsive-design-harnessing-power-of.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0QDRXcyeyp7ImA9WhVWGEw.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-2448990563467330437</id><published>2012-04-26T13:48:00.000-07:00</published><updated>2012-04-30T13:56:14.993-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-30T13:56:14.993-07:00</app:edited><title>Even more Top Search Queries data</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="background-color: white; color: #666666; font-size: 13px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Webmaster level: All&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;We recently updated the Top Search Queries data to take into account the &lt;/span&gt;&lt;a href="http://googlewebmastercentral.blogspot.com/2012/01/update-to-top-search-queries-data.html"&gt;&lt;span style="color: #1155cc; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;average top position&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;, we enabled &lt;/span&gt;&lt;a href="http://googlewebmastercentral.blogspot.com/2011/12/download-search-queries-data-using.html"&gt;&lt;span style="color: #1155cc; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;programmatic download&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt; and we made sure you could still get all the &lt;/span&gt;&lt;a href="http://googlewebmastercentral.blogspot.com/2012/03/upcoming-changes-in-googles-http.html"&gt;&lt;span style="color: #1155cc; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;queries that drive traffic to your site&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;. Well, now it’s time to give you more search queries data!&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;First, and most important, you can&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;now &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;see up to 90 days of historical data. If you click on the date picker in the top right of Search queries, you can go back three months instead of the previous 35 days. &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;div style="text-align: center;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;img height="171" src="https://lh4.googleusercontent.com/S_swxdO_v47_Vei4bf7ExWqa-KKRt-cYDsYIfm0y-g3OsZ1ZK5WFc-DnOwR8lRWLRacs3zZUDAXoaliOmSADzuk9qhCCLxm2cYiwR5yyniDhVM-VqwA" width="400" /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;And after you click:&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;div style="text-align: center;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;img height="172" src="https://lh6.googleusercontent.com/6FMRT9kyOLOBJCJ8gPgzePYEW3wcLw1BfSNSuT0q8E_A3ChmVYyaywYCcxgR8ONX8CVcEsRxAgS-Yu1M5l90T2N0LdioXJNt_icOkiOGpd15mtPFwmg" width="400" /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;In order to see 90 days, the option to view with changes will be disabled. If you want to see the changes with respect to the previous time period, the limit remains 30 days. Changes are disabled by default but you can switch them on and off with the button between the graph and the table. Top search queries data is normally available within 2 or 3 days.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit; font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;div style="text-align: center;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;img height="90" src="https://lh6.googleusercontent.com/RCiNfbuy0ZkzKZqCwgepQsBS9HkjY0VHzyKBGwSWEoXrjxpLtc5JzZ1PvRYmQP9fbNFMeFyHu81PfkRurXcULPxR43DRLgI3TkA63EGpeKDPH71xv1k" width="400" /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="text-align: -webkit-auto;"&gt;
&lt;b id="internal-source-marker_0.4554075850173831"&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Another big improvement in Webmaster Tools is that you can now see basic search query data as soon as you verify ownership of a site. No more waiting to see your information.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Finally, we're now collecting data for the top 2000 queries for which your site gets clicks. You may see less than 2000 if we didn’t record any clicks for a particular query in a given day, or if your query data is spread out among many countries or languages. For example, a search for [flowers] on Google Canada is counted separately from a search for [flowers] on google.com. Nevertheless, with this change 98% of sites will have complete coverage. Let us know what you think. We hope the new data will be useful.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: 15px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: #666666; font-size: 13px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Written by &lt;/span&gt;&lt;a href="http://plus.google.com/115448600022457507975/?rel=author"&gt;&lt;span style="color: #1155cc; font-size: 13px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Javier Tordable&lt;/span&gt;&lt;/a&gt;&lt;span style="color: #666666; font-size: 13px; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;, Tech Lead, Webmaster Tools&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-2448990563467330437?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=5bAtdhsqnH0:oBW9jdl1HHA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/5bAtdhsqnH0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/2448990563467330437/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=2448990563467330437" title="18 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2448990563467330437?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2448990563467330437?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/5bAtdhsqnH0/even-more-top-search-queries-data.html" title="Even more Top Search Queries data" /><author><name>Javier Tordable</name><uri>http://www.blogger.com/profile/15331172291865313088</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>18</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/even-more-top-search-queries-data.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0QFQHYyeSp7ImA9WhVWE0k.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-1195258106958256403</id><published>2012-04-25T01:08:00.000-07:00</published><updated>2012-04-25T01:08:31.891-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-25T01:08:31.891-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="crawling and indexing" /><category scheme="http://www.blogger.com/atom/ns#" term="general tips" /><title>1000 Words About Images</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Creativity is an important aspect of our lives and can enrich nearly everything we do. Say I'd like to make my teammate a cup of cool-looking coffee, but my creative batteries are empty; this would be (and is!) one of the many times when I look for inspiration on &lt;a href="http://www.google.com/imghp?q=coffee+art"&gt;Google Images&lt;/a&gt;.

&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-aRmn0fpnIt0/T5bdSf1aZGI/AAAAAAAAAEA/KFDA2Ve_ynM/s1600/blog_coffeeart.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="289" src="http://4.bp.blogspot.com/-aRmn0fpnIt0/T5bdSf1aZGI/AAAAAAAAAEA/KFDA2Ve_ynM/s400/blog_coffeeart.png" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;br /&gt;&lt;/div&gt;
The images you see in our search results come from publishers of all sizes — bloggers, media outlets, stock photo sites — who have embedded these images in their HTML pages. Google can index image types formatted as BMP, GIF, JPEG, PNG and WebP, as well as SVG.&lt;br /&gt;
&lt;br /&gt;
But how does Google know that the images are about coffee and not about tea? When our algorithms index images, they look at the textual content on the page the image was found on to learn more about the image. We also look at the page's title and its body; we might also learn more from the image’s filename, anchor text that points to it, and its "&lt;a href="http://googlewebmastercentral.blogspot.com/2007/12/using-alt-attributes-smartly.html"&gt;alt text&lt;/a&gt;;" we may use computer vision to learn more about the image and may also use the caption provided in the &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=178636"&gt;Image Sitemap&lt;/a&gt; if that text also exists on the page.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;To help us index your images, make sure that:
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;we can crawl both the HTML page the image is embedded in, and the image itself;&lt;/li&gt;
&lt;li&gt;the image is in one of our supported formats: BMP, GIF, JPEG, PNG, WebP or SVG.&lt;/li&gt;
&lt;/ul&gt;
Additionally, we recommend:
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;that the image filename is related to the image’s content;&lt;/li&gt;
&lt;li&gt;that the alt attribute of the image describes the image in a human-friendly way;&lt;/li&gt;
&lt;li&gt;and finally, it also helps if the HTML page’s textual contents as well as the text near the image are related to the image.&lt;/li&gt;
&lt;/ul&gt;
Now some answers to questions we’ve seen many times:&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Q:&lt;/b&gt; Why do I sometimes see Googlebot crawling my images, rather than Googlebot-Image?&lt;br /&gt;
&lt;b&gt;A:&lt;/b&gt; Generally this happens when it’s not clear that a URL will lead to an image, so we crawl the URL with Googlebot first. If we find the URL leads to an image, we’ll usually revisit with Googlebot-Image. Because of this, it’s generally a good idea to allow crawling of your images and pages by both Googlebot and Googlebot-Image.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Q:&lt;/b&gt; Is it true that there’s a maximum file size for the images?&lt;br /&gt;
&lt;b&gt;A:&lt;/b&gt; We’re happy to index images of any size; there’s no file size restriction.
&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-oRoamrKlp0c/T5be90Lcz3I/AAAAAAAAAEM/2TzG6PE_oIA/s1600/blog_exif.png" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="251" src="http://4.bp.blogspot.com/-oRoamrKlp0c/T5be90Lcz3I/AAAAAAAAAEM/2TzG6PE_oIA/s400/blog_exif.png" width="268" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;Q:&lt;/b&gt; What happens to the EXIF, XMP and other metadata my images contain?&lt;br /&gt;
&lt;b&gt;A:&lt;/b&gt; We may use any information we find to help our users find what they’re looking for more easily. Additionally, information like EXIF data may be displayed in the right-hand sidebar of the interstitial page that appears when you click on an image.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Q:&lt;/b&gt; Should I really submit an Image Sitemap? What are the benefits?&lt;br /&gt;
&lt;b&gt;A:&lt;/b&gt; Yes! &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=178636"&gt;Image Sitemaps&lt;/a&gt; help us learn about your new images and may also help us learn what the images are about.&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;Q:&lt;/b&gt; I’m using a CDN to host my images; how can I still use an Image Sitemap?&lt;br /&gt;
&lt;b&gt;A:&lt;/b&gt; &lt;a href="http://www.sitemaps.org/protocol.html#sitemaps_cross_submits"&gt;Cross-domain restrictions&lt;/a&gt; apply only to the Sitemaps’ &lt;loc&gt; tag. In Image Sitemaps, the &lt;image:loc&gt; tag is allowed to point to a URL on another domain, so using a CDN for your images is fine.
We also encourage you to verify the CDN’s domain name in Webmaster Tools so that we can inform you of any crawl errors that we might find.&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;Q:&lt;/b&gt; Is it a problem if my images can be found on multiple domains or subdomains I own — for example, CDNs or related sites?&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;A:&lt;/b&gt; Generally, the best practice is to have only one copy of any type of content. If you’re duplicating your images across multiple hostnames, our algorithms may pick one copy as the canonical copy of the image, which may not be your preferred version. This can also lead to slower crawling and indexing of your images.&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;Q:&lt;/b&gt; We sometimes see the original source of an image ranked lower than other sources; why is this?&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;loc&gt;&lt;image:loc&gt;&lt;b&gt;A:&lt;/b&gt; Keep in mind that we use the textual content of a page when determining the context of an image. For example, if the original source is a page from an image gallery that has very little text, it can happen that a page with more textual context is chosen to be shown in search. If you feel you've identified very bad search results for a particular query, feel free to use the feedback link below the search results or to share your example in our &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#!forum/webmasters"&gt;Webmaster Help Forum&lt;/a&gt;.


&lt;/image:loc&gt;&lt;/loc&gt;&lt;br /&gt;
&lt;h3&gt;
SafeSearch&lt;/h3&gt;
Our algorithms use a great variety of signals to decide whether an image — or a whole page, if we’re talking about Web Search — should be filtered from the results when the user’s SafeSearch filter is turned on. In the case of images some of these signals are generated using computer vision, but the SafeSearch algorithms also look at simpler things such as where the image was used previously and the context in which the image was used.&amp;nbsp;&lt;div&gt;
One of the strongest signals, however, is self-marked adult pages. We recommend that webmasters who publish adult content mark up their pages with one of the following meta tags:

&lt;pre&gt;
&amp;lt;meta name="rating" content="adult" /&amp;gt;
&amp;lt;meta name="rating" content="RTA-5042-1996-1400-1577-RTA" /&amp;gt;
&lt;/pre&gt;
&lt;pre&gt;
&lt;/pre&gt;
Many users prefer not to have adult content included in their search results (especially if kids use the same computer). When a webmaster provides one of these meta tags, it helps to provide a better user experience because users don't see results which they don't want to or expect to see.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
As with all algorithms, sometimes it may happen that SafeSearch filters content inadvertently. If you think your images or pages are mistakenly being filtered by SafeSearch, please let us know using the &lt;a href="http://support.google.com/webmasters/bin/request.py?hl=en&amp;amp;contact_type=safe_search"&gt;following form&lt;/a&gt;.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
If you need more information about how we index images, please check out the section of our Help Center dedicated to &lt;a href="http://support.google.com/webmasters/bin/topic.py?topic=2370565"&gt;images&lt;/a&gt;, read our &lt;a href="http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf"&gt;SEO Starter Guide&lt;/a&gt; which contains lots of useful information, and if you have more questions please post them in the &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#!forum/webmasters"&gt;Webmaster Help Forum&lt;/a&gt;.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/109139237014771009015"&gt;Gary Illyes&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-1195258106958256403?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=UPSZ32XQUE8:5um1BVDODCg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/UPSZ32XQUE8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/1195258106958256403/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=1195258106958256403" title="27 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1195258106958256403?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1195258106958256403?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/UPSZ32XQUE8/1000-words-about-images.html" title="1000 Words About Images" /><author><name>Gary Illyes</name><uri>http://www.blogger.com/profile/16293019109920558435</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://2.bp.blogspot.com/-E8DuVr0oOx0/Td4WH0kyL8I/AAAAAAAAACM/e-BbpHkWnkk/s1600/AIbEiAIAAABECL6Gx6Luru7QtAEiC3ZjYXJkX3Bob3RvKihlZGIxYzRlN2NlZTNkOTlmMGZmZjlhZTY0MGJhMmY2ZjExNzM0NDE3MAGr5OHKn-IJgc-ZJei0LNKDwxm5CQ" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-aRmn0fpnIt0/T5bdSf1aZGI/AAAAAAAAAEA/KFDA2Ve_ynM/s72-c/blog_coffeeart.png" height="72" width="72" /><thr:total>27</thr:total><georss:featurename>Zurich, Switzerland</georss:featurename><georss:point>47.3686498 8.5391825</georss:point><georss:box>47.2824843 8.381254 47.4548153 8.697111000000001</georss:box><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/1000-words-about-images.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04HRHc8fCp7ImA9WhVWE04.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-237718932378532213</id><published>2012-04-24T23:38:00.000-07:00</published><updated>2012-04-24T23:38:55.974-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-24T23:38:55.974-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="crawling and indexing" /><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="general tips" /><category scheme="http://www.blogger.com/atom/ns#" term="search results" /><title>How to move your content to a new location</title><content type="html">Webmaster level: Intermediate&lt;br /&gt;
&lt;br /&gt;
While maintaining a website, webmasters may decide to move the whole website or parts of it to a new location. For example, you might move content from a subdirectory to a subdomain, or to a completely new domain. Changing the location of your content can involve a bit of effort, but it’s worth doing it properly.&lt;br /&gt;
&lt;br /&gt;
To help search engines understand your new site structure better and make your site more user-friendly, make sure to follow these guidelines:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;It’s important to redirect all users and bots that visit your old content location to the new content location using &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=93633"&gt;301 redirects&lt;/a&gt;. To highlight the relationship between the two locations, make sure that each old URL points to the new URL that hosts similar content. If you’re unable to use 301 redirects, you may want to consider using &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=139394"&gt;cross domain canonicals&lt;/a&gt; for search engines instead.&lt;/li&gt;
&lt;li&gt;Check that you have both the &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=35179"&gt;new and the old location verified&lt;/a&gt; in the same Google Webmaster Tools account.&lt;/li&gt;
&lt;li&gt;Make sure to check if the new location is crawlable by Googlebot using the &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=158587"&gt;Fetch as Googlebot&lt;/a&gt; feature. It’s important to make sure Google can actually access your content in the new location. Also make sure that the old URLs are not blocked by a robots.txt disallow directive, so that the redirect or rel=canonical can be found.&lt;/li&gt;
&lt;li&gt;If you’re moving your content to an entirely new domain, use the &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=83106"&gt;Change of address&lt;/a&gt; option under Site configuration in Google Webmaster Tools to let us know about the change.&lt;/li&gt;
&lt;/ul&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-e6J69QnBjcI/T41fhmJe0rI/AAAAAAAAAHY/gMrrlyNWLeA/s1600/SiteConfigurationAddressChange.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img alt="Change of address option in Google Webmaster Tools" border="0" height="217" src="http://4.bp.blogspot.com/-e6J69QnBjcI/T41fhmJe0rI/AAAAAAAAAHY/gMrrlyNWLeA/s400/SiteConfigurationAddressChange.png" title="Change of address option in Google Webmaster Tools" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Tell us about moving your content via Google Webmaster Tools&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;ul&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;If you've also changed your site's URL structure, make sure that it's possible to navigate it without running into &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=93641" style="text-align: left;"&gt;404 error pages&lt;/a&gt;&lt;span style="text-align: left;"&gt;. Google Webmaster Tools may prove useful in investigating &lt;/span&gt;&lt;a href="http://googlewebmastercentral.blogspot.com/2012/03/crawl-errors-next-generation.html" style="text-align: left;"&gt;potentially broken links&lt;/a&gt;&lt;span style="text-align: left;"&gt;. Just look for Diagnostics &amp;gt; &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=35120" style="text-align: left;"&gt;Crawl errors&lt;/a&gt;&lt;span style="text-align: left;"&gt; for your new site.&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;Check your &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=156184" style="text-align: left;"&gt;Sitemap&lt;/a&gt;&lt;span style="text-align: left;"&gt; and verify that it’s up to date.&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;Once you've set up your &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=93633" style="text-align: left;"&gt;301 redirects&lt;/a&gt;&lt;span style="text-align: left;"&gt;, you can keep an eye on users to your &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=93641" style="text-align: left;"&gt;404 error pages&lt;/a&gt;&lt;span style="text-align: left;"&gt; to check that users are being redirected to new pages, and not accidentally ending up on broken URLs. When a user comes to a 404 error page on your site, try to identify which URL they were trying to access, why this user was not redirected to the new location of your content, and then make changes to your 301 redirect rules as appropriate.&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;Have a look at the &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=55281" style="text-align: left;"&gt;Links to your site&lt;/a&gt;&lt;span style="text-align: left;"&gt; in Google Webmaster Tools and inform the important sites that link to your content about your new location.&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;If your site’s content is specific to a particular region you may want to double check the &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=62399" style="text-align: left;"&gt;geotargeting&lt;/a&gt;&lt;span style="text-align: left;"&gt; preferences for your new site structure in Google Webmaster Tools.&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;As a general rule of thumb, try to avoid running two crawlable sites with completely or largely identical content without a 301 redirection or specifying a &lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=139394" style="text-align: left;"&gt;rel=”canonical”&lt;/a&gt;&lt;span style="text-align: left;"&gt;.&amp;nbsp;&lt;/span&gt;&lt;/li&gt;
&lt;li style="text-align: -webkit-auto;"&gt;&lt;span style="text-align: left;"&gt;Lastly, we recommend not implementing other major changes when you’re moving your content to a new location, like large-scale content, URL structure, or navigational updates. Changing too much at once may confuse users and search engines.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
We hope you find these suggestions useful. If you happen to have further questions on how to move your content to a new location we’d like to encourage you to drop by our &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#%21forum/webmasters"&gt;Google Webmaster Help Forum&lt;/a&gt; and seek advice from expert webmasters.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #666666;"&gt;Written by &lt;a href="https://plus.google.com/105243650144707611158?rel=author"&gt;Fili Wiese&lt;/a&gt; (Ad Traffic Quality) &amp;amp; &lt;a href="https://plus.google.com/105501965108087246894?rel=author"&gt;Kaspar Szymanski&lt;/a&gt; (Search Quality)&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-237718932378532213?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=SranBENcG2o:uW2od7ljNf0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/SranBENcG2o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/237718932378532213/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=237718932378532213" title="18 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/237718932378532213?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/237718932378532213?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/SranBENcG2o/how-to-move-your-content-to-new.html" title="How to move your content to a new location" /><author><name>Kaspar Szymanski</name><uri>http://www.blogger.com/profile/01864344540250558992</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-e6J69QnBjcI/T41fhmJe0rI/AAAAAAAAAHY/gMrrlyNWLeA/s72-c/SiteConfigurationAddressChange.png" height="72" width="72" /><thr:total>18</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/how-to-move-your-content-to-new.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8FRn05eip7ImA9WhVWE00.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-2568358342530202752</id><published>2012-04-24T15:52:00.000-07:00</published><updated>2012-04-24T16:06:57.322-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-24T16:06:57.322-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="webmaster tools" /><title>Webmaster Tools spring cleaning</title><content type="html">&lt;div dir="ltr" style="text-align: left;" trbidi="on"&gt;
Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Webmaster Tools added lots of new functionality over the past year, such as improvements to &lt;a href="http://googlewebmastercentral.blogspot.com/2012/01/whats-new-with-sitemaps.html"&gt;Sitemaps&lt;/a&gt; and &lt;a href="http://googlewebmastercentral.blogspot.com/2012/03/crawl-errors-next-generation.html"&gt;Crawl errors&lt;/a&gt;, as well as the new &lt;a href="http://googlewebmastercentral.blogspot.com/2012/03/safely-share-access-to-your-site-in.html"&gt;User Administration&lt;/a&gt; feature. In recent weeks, we also updated the look &amp;amp; feel of our user interface to match Google's new style. In order to keep bringing you improvements, we occasionally review each of our features to see if they’re still useful in comparison to the maintenance and support they require. As a result of our latest round of spring cleaning, we'll be removing the Subscriber stats feature, the Create robots.txt tool, and the Site performance feature in the next two weeks.&lt;br /&gt;
&lt;br /&gt;
Subscriber stats reports the number of subscribers to a site’s RSS or Atom feeds. This functionality is currently provided in Feedburner, another Google product which offers its own subscriber stats as well as other cool features specifically geared for &lt;a href="http://support.google.com/feedburner/bin/answer.py?hl=en&amp;amp;answer=79408"&gt;feeds&lt;/a&gt; of all types. If you are looking for a replacement to Subscriber stats in Webmaster Tools, check out &lt;a href="http://feedburner.google.com/"&gt;Feedburner&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
The Create robots.txt tool provides a way to generate &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=35303"&gt;robots.txt&lt;/a&gt; files for the purpose of blocking specific parts of a site from being crawled by Googlebot. This feature has very low usage, so we've decided to remove it from Webmaster Tools. While many websites don't even need a robots.txt file, if you feel that you do need one, it's easy to make one yourself in a text editor or use one of the many other tools available on the web for generating robots.txt files.&lt;br /&gt;
&lt;br /&gt;
Site performance is a &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=106792"&gt;Webmaster Tools Labs&lt;/a&gt; feature that provides information about the average load time of your site's pages. This feature is also being removed due to low usage. Now you might have heard our announcement from a couple of years ago that the latency of a  site's pages is a &lt;a href="http://googlewebmastercentral.blogspot.com/2010/04/using-site-speed-in-web-search-ranking.html"&gt;factor in our search ranking algorithms&lt;/a&gt;. This is still true, and you can analyze your site's performance using the &lt;a href="http://analytics.blogspot.com/2012/03/measure-your-websites-performance-with.html"&gt;Site Speed&lt;/a&gt; feature in Google Analytics or using Google's &lt;a href="https://developers.google.com/pagespeed/"&gt;PageSpeed&lt;/a&gt; online. There are also many other site performance analysis tools available like &lt;a href="http://www.webpagetest.org/"&gt;WebPageTest&lt;/a&gt; and the &lt;a href="http://yslow.org/"&gt;YSlow&lt;/a&gt; browser plugin.&lt;br /&gt;
&lt;br /&gt;
If you have questions or comments about these changes please post them in our &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#%21forum/webmasters"&gt;Help Forum&lt;/a&gt;.
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/u/0/100827970491354551456?rel=author"&gt;Jonathan Simon&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-2568358342530202752?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=SMZMt_cCFZE:7nCfDA9LEi4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/SMZMt_cCFZE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/2568358342530202752/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=2568358342530202752" title="14 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2568358342530202752?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/2568358342530202752?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/SMZMt_cCFZE/webmaster-tools-spring-cleaning.html" title="Webmaster Tools spring cleaning" /><author><name>Jonathan Simon</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="25" src="http://1.bp.blogspot.com/_pHpYpU4sgSI/SMhyM5_f0ZI/AAAAAAAAAKg/YJ8TC10DZSs/S220/possibly-habitable.jpg" /></author><thr:total>14</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/webmaster-tools-spring-cleaning.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C08DRnk7fCp7ImA9WhVWGE0.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-621410253790066421</id><published>2012-04-24T14:45:00.000-07:00</published><updated>2012-04-30T09:04:37.704-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-30T09:04:37.704-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="search results" /><title>Another step to reward high-quality sites</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Google has said before that search engine optimization, or SEO, can be &lt;a href="http://www.youtube.com/watch?v=BS75vhGO-kk"&gt;positive and constructive&lt;/a&gt;—and we're &lt;a href="http://www.bing.com/community/site_blogs/b/webmaster/archive/2012/03/23/does-bing-like-seo-you-bet-your-ahrefs-we-do.aspx"&gt;not the only ones&lt;/a&gt;. Effective search engine optimization can make a site more crawlable and make individual pages more accessible and easier to find. Search engine optimization includes things as simple as keyword research to ensure that the right words are on the page, not just industry jargon that normal people will never type.&lt;br /&gt;
&lt;br /&gt;
“White hat” search engine optimizers often improve the usability of a site, help create great content, or make sites faster, which is good for both users and search engines. Good search engine optimization can also mean good marketing: thinking about creative ways to make a site more compelling, which can help with search engines as well as social media. The net result of making a great site is often greater awareness of that site on the web, which can translate into more people linking to or visiting a site.&lt;br /&gt;
&lt;br /&gt;
The opposite of “white hat” SEO is something called “black hat webspam” (we say “webspam” to distinguish it from email spam). In the pursuit of higher rankings or traffic, a few sites use techniques that don’t benefit users, where the intent is to look for shortcuts or loopholes that would rank pages higher than they deserve to be ranked. We see all sorts of webspam techniques every day, from &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=66358"&gt;keyword stuffing&lt;/a&gt; to &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=66356"&gt;link schemes&lt;/a&gt; that attempt to propel sites higher in rankings.&lt;br /&gt;
&lt;br /&gt;
The goal of many of our ranking changes is to help searchers find sites that provide a great user experience and fulfill their information needs. We also want the “good guys” making great sites for users, not just algorithms, to see their effort rewarded. To that end we’ve launched &lt;a href="http://googleblog.blogspot.com/2011/02/finding-more-high-quality-sites-in.html"&gt;Panda changes&lt;/a&gt; that successfully &lt;a href="http://www.newscientist.com/article/mg21228436.200-inside-search-engines-war-on-bad-results.html"&gt;returned higher-quality sites in search results&lt;/a&gt;. And earlier this year we launched a &lt;a href="http://insidesearch.blogspot.com/2012/01/page-layout-algorithm-improvement.html"&gt;page layout algorithm&lt;/a&gt; that reduces rankings for sites that don’t make much content available “above the fold.”&lt;br /&gt;
&lt;br /&gt;
In the next few days, we’re launching an important algorithm change targeted at webspam. The change will decrease rankings for sites that we believe are violating Google’s existing &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=35769#3"&gt;quality guidelines&lt;/a&gt;. We’ve always targeted webspam in our rankings, and this algorithm represents another improvement in our efforts to reduce webspam and promote high quality content. While we can't divulge specific signals because we don't want to give people a way to game our search results and worsen the experience for users, our advice for webmasters is to focus on &lt;a href="http://googlewebmastercentral.blogspot.com/2011/05/more-guidance-on-building-high-quality.html"&gt;creating high quality sites&lt;/a&gt; that create a good user experience and employ white hat SEO methods instead of engaging in aggressive webspam tactics.&lt;br /&gt;
&lt;br /&gt;
Here’s an example of a webspam tactic like keyword stuffing taken from a site that will be affected by this change:

&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-ANp9064LZis/T5bafEIVu5I/AAAAAAAAAOU/ALrAZP-6AdM/s1600/keyword-stuffing.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="199" src="http://1.bp.blogspot.com/-ANp9064LZis/T5bafEIVu5I/AAAAAAAAAOU/ALrAZP-6AdM/s320/keyword-stuffing.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Of course, most sites affected by this change aren’t so blatant. Here’s an example of a site with unusual linking patterns that is also affected by this change. Notice that if you try to read the text aloud you’ll discover that the outgoing links are completely unrelated to the actual content, and in fact the page text has been “spun” beyond recognition:

&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-Ct8q_RAxrFY/T5bafaCjA4I/AAAAAAAAAOc/ehd5krRkUks/s1600/link-spam.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="212" src="http://4.bp.blogspot.com/-Ct8q_RAxrFY/T5bafaCjA4I/AAAAAAAAAOc/ehd5krRkUks/s320/link-spam.png" width="320" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
Sites affected by this change might not be easily recognizable as spamming without deep analysis or expertise, but the common thread is that these sites are doing much more than white hat SEO; we believe they are engaging in webspam tactics to manipulate search engine rankings.&lt;br /&gt;
&lt;br /&gt;
The change will go live for all languages at the same time. For context, the initial Panda change affected about 12% of queries to a significant degree; this algorithm affects about 3.1% of queries in English to a degree that a regular user might notice. The change affects roughly 3% of queries in languages such as German, Chinese, and Arabic, but the impact is higher in more heavily-spammed languages. For example, 5% of Polish queries change to a degree that a regular user might notice.&lt;br /&gt;
&lt;br /&gt;
We want people doing white hat search engine optimization (or even no search engine optimization at all) to be free to focus on creating amazing, compelling web sites. As always, we’ll keep our ears open for feedback on ways to iterate and improve our ranking algorithms toward that goal.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/u/0/109412257237874861202?rel=author"&gt;Matt Cutts&lt;/a&gt;, Distinguished Engineer&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-621410253790066421?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=d7PAkWuFzNY:gNaD_NTOBp4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/d7PAkWuFzNY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/621410253790066421/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=621410253790066421" title="934 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/621410253790066421?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/621410253790066421?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/d7PAkWuFzNY/another-step-to-reward-high-quality.html" title="Another step to reward high-quality sites" /><author><name>Amanda Chang</name><uri>http://www.blogger.com/profile/00645353725942988375</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-ANp9064LZis/T5bafEIVu5I/AAAAAAAAAOU/ALrAZP-6AdM/s72-c/keyword-stuffing.png" height="72" width="72" /><thr:total>934</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/another-step-to-reward-high-quality.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMHRHs8fip7ImA9WhVXFk8.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-1603440325559343712</id><published>2012-04-16T14:55:00.000-07:00</published><updated>2012-04-16T18:50:35.576-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-04-16T18:50:35.576-07:00</app:edited><title>Updates to rich snippets</title><content type="html">&lt;b id="internal-source-marker_0.575230079004541" style="font-family: inherit;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Webmaster level:  All&lt;/span&gt;&lt;/b&gt;
&lt;b style="font-family: inherit;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b style="font-family: inherit;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Today we’re announcing two updates to &lt;/span&gt;&lt;/b&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=99170" style="font-family: inherit;"&gt;&lt;span style="color: #1155cc; vertical-align: baseline; white-space: pre-wrap;"&gt;rich snippets&lt;/span&gt;&lt;/a&gt;&lt;span style="font-family: inherit; vertical-align: baseline; white-space: pre-wrap;"&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: inherit;"&gt;&lt;span class=""&gt;&lt;span id="internal-source-marker_0.575230079004541"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;First, we’re happy to announce that &lt;/span&gt;&lt;/span&gt;&lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;amp;answer=146750" style="font-weight: bold;"&gt;&lt;span style="color: #1155cc; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;product rich snippets&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;, which previously were only available in a limited set of locales, are supported globally. &amp;nbsp;Users viewing your site’s results in Google search can now preview information about products available on your website, regardless of where they’re searching from. Here’s an example of a product rich snippet:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-_zOlFmk_U5I/T4yXp1JPxMI/AAAAAAAAACg/oGB4pim0jUM/s1600/Shopping+RS+in+fr-FR.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="68" src="http://4.bp.blogspot.com/-_zOlFmk_U5I/T4yXp1JPxMI/AAAAAAAAACg/oGB4pim0jUM/s400/Shopping+RS+in+fr-FR.png" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;A product rich snippet from www.google.fr&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;b id="internal-source-marker_0.575230079004541" style="white-space: normal;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Second, we’ve updated the &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;a href="http://www.google.com/webmasters/tools/richsnippets"&gt;&lt;span style="color: #1155cc; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;rich snippets testing tool&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt; to support HTML input. We heard from many users that they wanted to be able to test their HTML source without having to publish it to a web page. This is now supported by the tool, as shown below.&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-i_Gr8MTqsJc/T4yYB4_G-vI/AAAAAAAAACo/kwlunwK6jzQ/s1600/rstestingtool-html-input.png" imageanchor="1" style="margin-left: auto; margin-right: auto;"&gt;&lt;img border="0" height="265" src="http://4.bp.blogspot.com/-i_Gr8MTqsJc/T4yYB4_G-vI/AAAAAAAAACo/kwlunwK6jzQ/s400/rstestingtool-html-input.png" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Preview rich snippets from HTML source&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;b&gt;&lt;span style="font-family: inherit;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;&lt;b id="internal-source-marker_0.575230079004541" style="white-space: normal;"&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;If you have any questions or feedback about these changes, please let us know in our &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;a href="https://groups.google.com/a/googleproductforums.com/forum/#!forum/webmasters"&gt;&lt;span style="color: #1155cc; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Help Forum&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;. You can find more information about rich snippets in our &lt;/span&gt;&lt;a href="http://support.google.com/webmasters"&gt;&lt;span style="color: #1155cc; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Help Center&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt; and &lt;/span&gt;&lt;a href="https://developers.google.com/webmasters/richsnippets/"&gt;&lt;span style="color: #1155cc; font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt;Webmaster Education&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: normal; vertical-align: baseline; white-space: pre-wrap;"&gt; site.&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;
&lt;span style="font-family: inherit;"&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style="font-family: inherit;" class="byline-author"&gt;Posted by Anthony Chavez, Product Manager&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-1603440325559343712?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=9qBgsKYUxdk:FXjuqrFC83U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/9qBgsKYUxdk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/1603440325559343712/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=1603440325559343712" title="28 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1603440325559343712?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1603440325559343712?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/9qBgsKYUxdk/updates-to-rich-snippets.html" title="Updates to rich snippets" /><author><name>Anthony Chavez</name><uri>http://www.blogger.com/profile/02556445120622686505</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-_zOlFmk_U5I/T4yXp1JPxMI/AAAAAAAAACg/oGB4pim0jUM/s72-c/Shopping+RS+in+fr-FR.png" height="72" width="72" /><thr:total>28</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/04/updates-to-rich-snippets.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4HR3w6fip7ImA9WhVREkw.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-3402366236668178119</id><published>2012-03-19T21:06:00.006-07:00</published><updated>2012-03-19T21:15:36.216-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-19T21:15:36.216-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="general tips" /><category scheme="http://www.blogger.com/atom/ns#" term="beginner" /><title>Five common SEO mistakes (and six good ideas!)</title><content type="html">Webmaster Level: Beginner to Intermediate&lt;br /&gt;
&lt;br /&gt;
To help you avoid common mistakes webmasters face with regard to search engine optimization (SEO), I filmed a video outlining five common mistakes I’ve noticed in the SEO industry. Almost four years ago, we also gathered information from all of you (our readers) about &lt;a href="http://googlewebmastercentral.blogspot.com/2008/06/what-are-your-seo-recommendations.html"&gt;your SEO recommendations&lt;/a&gt; and updated our related &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=35291"&gt;Help Center article&lt;/a&gt; given your feedback. Much of the same advice from 2008 still holds true today -- here’s to more years ahead building a great site!&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align:center"&gt;&lt;iframe width="480" height="274" src="http://www.youtube.com/embed/6AmRg3p79pM" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;iframe src="https://docs.google.com/presentation/embed?id=1AdMvztuZqExcsiICAJlhYHl54SIBHYVJdyG7ToFJwno&amp;start=false&amp;loop=false&amp;delayms=3000" frameborder="0" width="480" height="389" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;br /&gt;
If you’re short on time, here’s the gist:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Avoid these common mistakes&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;1. &lt;i&gt;Having no value proposition&lt;/i&gt;: Try not to assume that a site should rank #1 without knowing why it’s helpful to searchers (and better than the competition :)&lt;br /&gt;
&lt;br /&gt;
2. &lt;i&gt;Segmented approach&lt;/i&gt;: Be wary of setting SEO-related goals without making sure they’re aligned with your company’s overall objectives and the goals of other departments. For example, in tandem with your work optimizing product pages (and the full user experience once they come to your site), also contribute your expertise to your Marketing team’s upcoming campaign. So if Marketing is launching new videos or a more interactive site, be sure that searchers can find their content, too.&lt;br /&gt;
&lt;br /&gt;
3. &lt;i&gt;Time-consuming workarounds&lt;/i&gt;: Avoid implementing a hack rather than researching new features or best practices that could simplify development (e.g., changing the timestamp on an updated URL so it’s crawled more quickly instead of easily submitting the URL through &lt;a href="http://googlewebmastercentral.blogspot.com/2011/08/submit-urls-to-google-with-fetch-as.html"&gt;Fetch as Googlebot&lt;/a&gt;).&lt;br /&gt;
&lt;br /&gt;
4. &lt;i&gt;Caught in SEO trends&lt;/i&gt;: Consider spending less time obsessing about the latest “trick” to boost your rankings and instead focus on the fundamental tasks/efforts that will bring lasting visitors.&lt;br /&gt;
&lt;br /&gt;
5. &lt;i&gt;Slow iteration&lt;/i&gt;: Aim to be agile rather than promote an environment where the infrastructure and/or processes make improving your site, or even testing possible improvements, difficult.&lt;/blockquote&gt;&lt;b&gt;Six fundamental SEO tips&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;1. &lt;i&gt;Do something cool&lt;/i&gt;: Make sure your site stands out from the competition -- in a good way!&lt;br /&gt;
&lt;br /&gt;
2. &lt;i&gt;Include relevant words in your copy&lt;/i&gt;: Try to put yourself in the shoes of searchers. What would they query to find you? Your name/business name, location, products, etc., are important. It's also helpful to use the same terms in your site that your users might type (e.g., you might be a trained “flower designer” but most searchers might type [florist]), and to answer the questions they might have (e.g., store hours, product specs, reviews). It helps to know your customers.&lt;br /&gt;
&lt;br /&gt;
3. &lt;i&gt;Be smart about your tags and site architecture&lt;/i&gt;: Create unique title tags and meta descriptions; include Rich Snippets markup from &lt;a href="http://schema.org"&gt;schema.org&lt;/a&gt; where appropriate. Have intuitive navigation and &lt;a href="http://googlewebmastercentral.blogspot.com/2008/10/good-times-with-inbound-links.html"&gt;good internal links&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
4. &lt;i&gt;Sign up for &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=140528"&gt;email forwarding in Webmaster Tools&lt;/a&gt;&lt;/i&gt;: Help us communicate with you, especially when we notice &lt;a href="http://googlewebmastercentral.blogspot.com/2010/03/is-your-site-hacked-new-message-center.html"&gt;something awry&lt;/a&gt; with your site.&lt;br /&gt;
&lt;br /&gt;
5. &lt;i&gt;Attract buzz&lt;/i&gt;: Natural links, +1s, likes, follows... In every business there's something compelling, interesting, entertaining, or surprising that you can offer or share with your users. Provide a helpful service, tell fun stories, paint a vivid picture and users will share and reshare your content.&lt;br /&gt;
&lt;br /&gt;
6. &lt;i&gt;Stay fresh and relevant&lt;/i&gt;: Keep content up-to-date and consider options such as building a social media presence (if that’s where a potential audience exists) or creating an ideal mobile experience if your users are often on-the-go.&lt;/blockquote&gt;Good luck to everyone!&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/u/0/111983349552187459374?rel=author"&gt;Maile Ohye&lt;/a&gt;, Developer Programs Tech Lead&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-3402366236668178119?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=-JTivpwgP3w:xhc6u34YVKo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/-JTivpwgP3w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/3402366236668178119/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=3402366236668178119" title="41 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3402366236668178119?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3402366236668178119?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/-JTivpwgP3w/five-common-seo-mistakes-and-six-good.html" title="Five common SEO mistakes (and six good ideas!)" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/6AmRg3p79pM/default.jpg" height="72" width="72" /><thr:total>41</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/five-common-seo-mistakes-and-six-good.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8EQ3czeCp7ImA9WhVREUQ.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-5185475079773944557</id><published>2012-03-19T16:13:00.000-07:00</published><updated>2012-03-19T16:13:22.980-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-19T16:13:22.980-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="beginner" /><category scheme="http://www.blogger.com/atom/ns#" term="search results" /><title>Upcoming changes in Google’s HTTP Referrer</title><content type="html">Webmaster level: all&lt;br /&gt;
&lt;br /&gt;
Protecting users’ privacy is a priority for us and it’s helped drive &lt;a href="http://googleblog.blogspot.com/2011/10/making-search-more-secure.html"&gt;recent&lt;/a&gt; &lt;a href="http://insidesearch.blogspot.com/2012/03/bringing-more-secure-search-around.html"&gt;changes&lt;/a&gt;. Helping users save time is also very important; it’s explicitly mentioned as a part of &lt;a href="http://www.google.com/about/company/tenthings.html"&gt;our philosophy&lt;/a&gt;. Today, we’re happy to announce that Google Web Search will soon be using a &lt;a href="http://wiki.whatwg.org/wiki/Meta_referrer"&gt;new proposal&lt;/a&gt; to reduce latency when a user of Google’s SSL-search clicks on a search result with a modern browser such as Chrome. &lt;br /&gt;
&lt;br /&gt;
Starting in April, for browsers with the appropriate support, we will be using the "referrer" meta tag to automatically simplify the &lt;a href="http://en.wikipedia.org/wiki/HTTP_referer"&gt;referring URL&lt;/a&gt; that is sent by the browser when visiting a page linked from an organic search result. This results in a faster time to result and more streamlined experience for the user.&lt;br /&gt;
 &lt;br /&gt;
What does this mean for sites that receive clicks from Google search results? You may start to see "&lt;a href="https://tools.ietf.org/html/rfc6454"&gt;origin&lt;/a&gt;" referrers—Google’s homepages (see the &lt;a href="http://wiki.whatwg.org/wiki/Meta_referrer"&gt;meta referrer specification&lt;/a&gt; for further detail)—as a source of organic SSL search traffic. This change will only affect the subset of SSL search referrers which already didn’t include the query terms. Non-HTTPS referrals will continue to behave as they do today. Again, the primary motivation for this change is to remove an unneeded redirect so that signed-in users reach their destination faster.&lt;br /&gt;
&lt;br /&gt;
Website analytics programs can detect these organic search requests by detecting bare Google host names using SSL (like "https://www.google.co.uk/"). Webmasters will continue see the same data in &lt;a href="https://www.google.com/webmasters/tools/"&gt;Webmasters Tools&lt;/a&gt;—just as before, you’ll receive an aggregated list of the &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=35252"&gt;top search queries&lt;/a&gt; that drove traffic to their site. &lt;br /&gt;
&lt;br /&gt;
We will continue to look into further improvements to how search query data is surfaced through Webmaster Tools. If you have questions, feedback or suggestions, please let us know through the &lt;a href="http://groups.google.com/a/googleproductforums.com/forum/#!categories/webmasters"&gt;Webmaster Tools Help Forum&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/113006028898915385825" rel="author"&gt;John Mueller&lt;/a&gt;, Webmaster Trends Analyst, Switzerland&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-5185475079773944557?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=lqq1Qi_2kro:fDSf50xDn0c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/lqq1Qi_2kro" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/5185475079773944557/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=5185475079773944557" title="18 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/5185475079773944557?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/5185475079773944557?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/lqq1Qi_2kro/upcoming-changes-in-googles-http.html" title="Upcoming changes in Google’s HTTP Referrer" /><author><name>John Mueller</name><uri>http://www.blogger.com/profile/17311598715607309294</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://4.bp.blogspot.com/__jAFWOrP78k/St7SUngBhLI/AAAAAAAAB9M/0HlbdIaY93g/S220/john-sfo-96x96-green-red-green-blue.png" /></author><thr:total>18</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/upcoming-changes-in-googles-http.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEFQHs4fSp7ImA9WhVSFkk.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-634199865805972527</id><published>2012-03-13T06:00:00.003-07:00</published><updated>2012-03-13T06:00:11.535-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-13T06:00:11.535-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="crawling and indexing" /><category scheme="http://www.blogger.com/atom/ns#" term="search results" /><title>Video about pagination with rel=“next” and rel=“prev”</title><content type="html">Webmaster Level: Beginner to Intermediate&lt;br /&gt;
&lt;br /&gt;
If you’re curious about the &lt;a href="http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html"&gt;rel=”next” and rel=prev” for paginated content announcement&lt;/a&gt; we made several months ago, we filmed a &lt;a href="http://www.youtube.com/watch?v=njn8uXTWiGg"&gt;video covering more of the basics of pagination&lt;/a&gt; to help answer your questions. Paginated content includes things like an article that spans several URLs/pages, or an e-commerce product category that spans multiple pages. With rel=”next” and rel=”prev” markup, you can provide a strong hint to Google that you would like us to treat these pages as a logical sequence, thus consolidating their linking properties and usually sending searchers to the first page. Feel free to check out our presentation for more information:&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align:center"&gt;&lt;iframe width="500" height="284" src="http://www.youtube.com/embed/njn8uXTWiGg" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;i&gt;This video on pagination covers the basics of rel=”next” and rel=”prev” and how it could be useful for your site.&lt;br /&gt;
&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align:center"&gt;&lt;iframe src="https://docs.google.com/present/embed?id=dgddb89n_717cqkj3wfs" frameborder="0" width="410" height="342"&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;i&gt;Slides from the pagination video&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;
Additional resources about pagination include:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Webmaster Central Blog post announcing &lt;a href="http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html"&gt;support of rel=”next” and rel=”prev”&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Webmaster Help Center article with more &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=1663744"&gt;implementations of rel=”next” and rel=”prev&lt;/a&gt;”&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.google.com/support/forum/p/Webmasters/thread?tid=344378292ff91e8d&amp;hl=en"&gt;Webmaster Forum thread&lt;/a&gt; with our answers to the community’s in-depth questions, such as:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="text-indent:30px"&gt;&lt;i&gt;Does rel=next/prev also work as a signal for only one page of the series (page 1 in most cases?) to be included in the search index? Or would noindex tags need to be present on page 2 and on?&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;When you implement rel="next" and rel="prev" on component pages of a series, we'll then consolidate the indexing properties from the component pages and attempt to direct users to the most relevant page/URL. This is typically the first page. There's no need to mark page 2 to n of the series with noindex unless you're sure that you don't want those pages to appear in search results.&lt;/blockquote&gt;&lt;br /&gt;
&lt;i&gt;Should I use the rel next/prev into [sic] the &lt;head&gt; section of a blog even if the two contents are not strictly correlated (but they are just time-sequential)?&lt;/i&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;In regard to using rel=”next” and rel=”prev” for entries in your blog that “are not strictly correlated (but they are just time-sequential),” pagination markup likely isn’t the best use of your time -- time-sequential pages aren’t nearly as helpful to our indexing process as semantically related content, such as pagination on component pages in an article or category. It’s fine if you include the markup on your time-sequential pages, but please note that it’s not the most helpful use case.&lt;/blockquote&gt;&lt;br /&gt;
&lt;i&gt;We operate a real estate rental website. Our files display results based on numerous parameters that affect the order and the specific results that display. Examples of such parameters are “page number”, “records per page”, “sorting” and “area selection”...&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;It sounds like your real estate rental site encounters many of the same issues that e-commerce sites face... Here are some ideas on your situation:&lt;br /&gt;
&lt;br /&gt;
1. It’s great that you are using the Webmaster Tools URL parameters feature to more efficiently crawl your site.&lt;br /&gt;
&lt;br /&gt;
2. It’s possible that your site can form a rel=”next” and rel=”prev” sequence with no parameters (or with default parameter values). It’s also possible to form parallel pagination sequences when users select certain parameters, such as a sequence of pages where there are 15 records and a separate sequence when a user selects 30 records. Paginating component pages, even with parameters, helps us more accurately index your content.&lt;br /&gt;
&lt;br /&gt;
3. While it’s fine to set rel=”canonical” from a component URL to a single view-all page, setting the canonical to the first page of a parameter-less sequence is considered improper usage. We make no promises to honor this implementation of rel=”canonical.”&lt;/blockquote&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
Remember that if you have paginated content, it’s fine to leave it as-is and not add rel=”next” and rel=”prev” markup at all. But if you’re interested in pagination markup as a strong hint  for us to better understand your site, we hope these resources help answer your questions!&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/u/0/111983349552187459374?rel=author"&gt;Maile Ohye&lt;/a&gt;, Developer Programs Tech Lead&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-634199865805972527?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=PYyId1YxyQ0:ZHfWPhU3M4Y:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/PYyId1YxyQ0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/634199865805972527/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=634199865805972527" title="18 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/634199865805972527?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/634199865805972527?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/PYyId1YxyQ0/video-about-pagination-with-relnext-and.html" title="Video about pagination with rel=“next” and rel=“prev”" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://img.youtube.com/vi/njn8uXTWiGg/default.jpg" height="72" width="72" /><thr:total>18</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/video-about-pagination-with-relnext-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMESH09eSp7ImA9WhVSFUQ.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-3430098410429968692</id><published>2012-03-12T15:00:00.007-07:00</published><updated>2012-03-12T15:46:49.361-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-12T15:46:49.361-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="crawling and indexing" /><category scheme="http://www.blogger.com/atom/ns#" term="webmaster tools" /><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="beginner" /><title>Crawl Errors: The Next Generation</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Crawl errors is one of the most popular features in Webmaster Tools, and today we’re rolling out some very significant enhancements that will make it even more useful. &lt;br /&gt;
&lt;br /&gt;
We now detect and report many new types of errors. To help make sense of the new data, we’ve split the errors into two parts: &lt;em&gt;site errors&lt;/em&gt; and &lt;em&gt;URL errors&lt;/em&gt;. &lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;&lt;strong&gt;Site Errors&lt;/strong&gt;&lt;/h2&gt;Site errors are errors that aren’t specific to a particular URL—they affect your entire site. These include DNS resolution failures, connectivity issues with your web server, and problems fetching your robots.txt file. We used to report these errors by URL, but that didn’t make a lot of sense because they aren’t specific to individual URLs—in fact, they prevent Googlebot from even requesting a URL! Instead, we now keep track of the failure rates for each type of site-wide error. We’ll also try to send you alerts when these errors become frequent enough that they warrant attention.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/DdLXTGQyTNKbPC5R2GeSwutYvyDx7sLnrTrIDYcIuw7_YESzDXXXZyPy2IEba1qy4QpMnetBc7rtgSA1-Mwms31ApSm8vimjUC60lBi2YRi3idqJWoM"&gt;&lt;img height="153" src="https://lh4.googleusercontent.com/DdLXTGQyTNKbPC5R2GeSwutYvyDx7sLnrTrIDYcIuw7_YESzDXXXZyPy2IEba1qy4QpMnetBc7rtgSA1-Mwms31ApSm8vimjUC60lBi2YRi3idqJWoM" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;View site error rate and counts over time&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
Furthermore, if you don’t have (and haven’t recently had) any problems in these areas, as is the case for many sites, we won’t bother you with this section. Instead, we’ll just show you some friendly check marks to let you know everything is hunky-dory.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/QXj6zaICWYruMWqaCp1jjGycY6zMudrN1E8NJTmix2u9KDk6UUPG5z2txQA8Ro9A_Tcg4gv04BTvff93AdT1QZ1GqtiASWy201tVP9K1YSTZ_4YYK2M"&gt;&lt;img height="51" src="https://lh4.googleusercontent.com/QXj6zaICWYruMWqaCp1jjGycY6zMudrN1E8NJTmix2u9KDk6UUPG5z2txQA8Ro9A_Tcg4gv04BTvff93AdT1QZ1GqtiASWy201tVP9K1YSTZ_4YYK2M" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;A site with no recent site-level errors&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
&lt;h2&gt;&lt;strong&gt;URL errors&lt;/strong&gt;&lt;/h2&gt;URL errors are errors that are specific to a particular page. This means that when Googlebot tried to crawl the URL, it was able to resolve your DNS, connect to your server, fetch and read your robots.txt file, and then request this URL, but something went wrong after that. We break the URL errors down into various categories based on what caused the error. If your site serves up Google News or mobile (CHTML/XHTML) data, we’ll show separate categories for those errors.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/S9j2GJ8ROVsH7cLWaBzvvChk3xAmjgQAGU-1Jybpi0WlUWxniPLqEKYH5XZxcrhxNidIg2ireE3yU1yUriwBRthWtFPy6i5hiWnsjjbdUfwOe0k2NIg"&gt;&lt;img height="172" src="https://lh3.googleusercontent.com/S9j2GJ8ROVsH7cLWaBzvvChk3xAmjgQAGU-1Jybpi0WlUWxniPLqEKYH5XZxcrhxNidIg2ireE3yU1yUriwBRthWtFPy6i5hiWnsjjbdUfwOe0k2NIg" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;URL errors by type with full current and historical counts&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
&lt;h2&gt;&lt;strong&gt;Less is more&lt;/strong&gt;&lt;/h2&gt;We used to show you at most 100,000 errors of each type. Trying to consume all this information was like drinking from a firehose, and you had no way of knowing which of those errors were important (your homepage is down) or less important (someone’s personal site made a typo in a link to your site). There was no realistic way to view all 100,000 errors—no way to sort, search, or mark your progress. In the new version of this feature, we’ve focused on trying to give you only the most important errors up front. For each category, we’ll give you what we think are the 1000 most important and actionable errors. &amp;nbsp;You can sort and filter these top 1000 errors, let us know when you think you’ve fixed them, and view details about them.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/2NS_MfakTOga5lyotGC4foFgblVKqToAPF9tf6QZv_hw4EK7WR6mAyaLA8yk7ofATsIYku8EldIdorELET9Y7wFf3XZJabEYENWxP85sxUUDHjgnhEQ"&gt;&lt;img height="165" src="https://lh6.googleusercontent.com/2NS_MfakTOga5lyotGC4foFgblVKqToAPF9tf6QZv_hw4EK7WR6mAyaLA8yk7ofATsIYku8EldIdorELET9Y7wFf3XZJabEYENWxP85sxUUDHjgnhEQ" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Instantly filter and sort errors on any column&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
Some sites have more than 1000 errors of a given type, so you’ll still be able to see the total number of errors you have of each type, as well as a graph showing historical data going back 90 days. For those who worry that 1000 error details plus a total aggregate count will not be enough, we’re considering adding programmatic access (an API) to allow you to download every last error you have, so please give us feedback if you need more.&lt;br /&gt;
&lt;br /&gt;
We've also removed the list of pages blocked by robots.txt, because while these can sometimes be useful for diagnosing a problem with your robots.txt file, they are frequently pages you &lt;em&gt;intentionally&lt;/em&gt; blocked. We really wanted to focus on errors, so look for information about roboted URLs to show up soon in the "Crawler access" feature under "Site configuration".&lt;br /&gt;
&lt;br /&gt;
&lt;h2&gt;&lt;strong&gt;Dive into the details&lt;/strong&gt;&lt;/h2&gt;Clicking on an individual error URL from the main list brings up a detail pane with additional information, including when we last tried to crawl the URL, when we first noticed a problem, and a brief explanation of the error.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/vJ3wgnK9ER5BTrZrlLBtT0ZNYe_8G0QVuuwdWowqYmLJeLvbfSzvkS6_IpHlK6QxjsgHHiwP5GZV8rUqA3GZsYqIU6LXn5XuUiuSEOMeKrxEH_-IlKA"&gt;&lt;img height="295" src="https://lh6.googleusercontent.com/vJ3wgnK9ER5BTrZrlLBtT0ZNYe_8G0QVuuwdWowqYmLJeLvbfSzvkS6_IpHlK6QxjsgHHiwP5GZV8rUqA3GZsYqIU6LXn5XuUiuSEOMeKrxEH_-IlKA" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Details for each URL error&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
From the details pane you can click on the link for the URL that caused the error to see for yourself what happens when you try to visit it. You can also mark the error as “fixed” (more on that later!), view help content for the error type, list Sitemaps that contain the URL, see other pages that link to this URL, and even have Googlebot fetch the URL right now, either for more information or to double-check that your fix worked.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/iVyazJ3ROjxNtWHHVP0spn8ouMWKoV86PZfkeySgWdT5bhiBw4dkYM_Af1uVkd838UTYy1g4f2EGv2yyv2XVznXYl9pRDB3U5ES6cfA7n3ps1pFdFwY"&gt;&lt;img height="295" src="https://lh3.googleusercontent.com/iVyazJ3ROjxNtWHHVP0spn8ouMWKoV86PZfkeySgWdT5bhiBw4dkYM_Af1uVkd838UTYy1g4f2EGv2yyv2XVznXYl9pRDB3U5ES6cfA7n3ps1pFdFwY" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;View pages which link to this URL&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
&lt;h2&gt;&lt;strong&gt;Take action!&lt;/strong&gt;&lt;/h2&gt;One thing we’re really excited about in this new version of the Crawl errors feature is that you can really focus on fixing what’s most important first. We’ve ranked the errors so that those at the top of the priority list will be ones where there’s something you can do, whether that’s fixing broken links on your own site, fixing bugs in your server software, updating your Sitemaps to prune dead URLs, or adding a 301 redirect to get users to the “real” page. We determine this based on a multitude of factors, including whether or not you included the URL in a Sitemap, how many places it’s linked from (and if any of those are also on your site), and whether the URL has gotten any traffic recently from search.&lt;br /&gt;
&lt;br /&gt;
Once you think you’ve fixed the issue (you can test your fix by fetching the URL as Googlebot), you can let us know by marking the error as “fixed” if you are a &lt;a href="http://googlewebmastercentral.blogspot.com/2012/03/safely-share-access-to-your-site-in.html"&gt;user with full access permissions&lt;/a&gt;. This will remove the error from your list. &amp;nbsp;In the future, the errors you’ve marked as fixed won’t be included in the top errors list, unless we’ve encountered the same error when trying to re-crawl a URL.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="text-align: center;"&gt;&lt;a href="https://lh5.googleusercontent.com/DZl3KVbXoaWchnW3vhJMJCBMjmrLoDPr-w1beREZI8TnQ0fvL81qmrPU3lWi7XJTiWEW-N72pVLWPFKXrEyzGa4zQaXCO5V2EDrbiCq9APPL9UvT6N4"&gt;&lt;img height="175" src="https://lh5.googleusercontent.com/DZl3KVbXoaWchnW3vhJMJCBMjmrLoDPr-w1beREZI8TnQ0fvL81qmrPU3lWi7XJTiWEW-N72pVLWPFKXrEyzGa4zQaXCO5V2EDrbiCq9APPL9UvT6N4" style="margin-left: auto; margin-right: auto;" width="400" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="tr-caption" style="text-align: center;"&gt;Select errors and mark them as fixed&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;br /&gt;
We’ve put a lot of work into the new Crawl errors feature, so we hope that it will be very useful to you. Let us know what you think and if you have any suggestions, please visit our &lt;a href="https://groups.google.com/a/googleproductforums.com/forum/#!forum/webmasters"&gt;forum&lt;/a&gt;!&lt;br /&gt;
&lt;br /&gt;
Written by &lt;a href="https://plus.google.com/u/0/108290787419744502823/about?rel=author" &gt;Kurt Dresner&lt;/a&gt;, Webmaster Tools team&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-3430098410429968692?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=q1wTh-dgIhk:Zp2C5qQQIp8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/q1wTh-dgIhk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/3430098410429968692/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=3430098410429968692" title="57 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3430098410429968692?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3430098410429968692?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/q1wTh-dgIhk/crawl-errors-next-generation.html" title="Crawl Errors: The Next Generation" /><author><name>Kurt Dresner</name><uri>http://www.blogger.com/profile/05881473137093872957</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>57</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/crawl-errors-next-generation.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C08HSH05cSp7ImA9WhVSEEs.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-1923029865464690730</id><published>2012-03-06T11:23:00.000-08:00</published><updated>2012-03-06T11:23:59.329-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-06T11:23:59.329-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="general tips" /><title>Keeping your free hosting service valuable for searchers</title><content type="html">Webmaster level: Advanced&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://en.wikipedia.org/wiki/Free_web_hosting_service"&gt;Free web hosting&lt;/a&gt; services can be great! Many of these services have helped to lower costs and technical barriers for webmasters and they continue to enable beginner webmasters to start their adventure on the web. Unfortunately, sometimes these lower barriers (meant to encourage less techy audiences) can attract some dodgy characters like spammers who look for cheap and easy ways to set up &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=35769#3"&gt;dozens or hundreds of sites that add little or no value&lt;/a&gt; to the web. When it comes to automatically generated sites, our stance remains the same: if the sites do not add sufficient value, we generally consider them as spam and take appropriate steps to protect our users from exposure to such sites in our natural search results.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align:center"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-mccdz1f3Sqs/T1ZfwzrRrWI/AAAAAAAAHu0/M2PQquYVjis/s1600/spam.png" imageanchor="1" style=""&gt;&lt;img border="0" height="375" width="400" src="http://1.bp.blogspot.com/-mccdz1f3Sqs/T1ZfwzrRrWI/AAAAAAAAHu0/M2PQquYVjis/s400/spam.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;i&gt;We consider automatically generated sites like this one to be spammy.&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;
If a free hosting service begins to show patterns of spam, we make a strong effort to be granular and tackle only spammy pages or sites. However, in some cases, when the spammers have pretty much taken over the free web hosting service or a large fraction of the service, we may be forced to take more decisive steps to protect our users and remove the entire free web hosting service from our search results. To prevent this from happening, we would like to help owners of free web hosting services by sharing what we think may help you save valuable resources like bandwidth and processing power, and also protect your hosting service from these spammers:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Publish a clear abuse policy and communicate it to your users, for example during the sign-up process. This step will contribute to transparency on what you consider to be spammy activity.&lt;/li&gt;
&lt;li&gt;In your sign-up form, consider using &lt;a href="http://www.google.com/recaptcha"&gt;CAPTCHAs&lt;/a&gt; or &lt;a href="http://www.evengrounds.com/developers/alternatives-to-captcha"&gt;similar verification tools&lt;/a&gt; to only allow human submissions and prevent automated scripts from generating a bunch of sites on your hosting service. While these methods may not be 100% foolproof, they can help to keep a lot of the bad actors out.&lt;/li&gt;
&lt;li&gt;Try to monitor your free hosting service for other spam signals like redirections, large numbers of ad blocks, certain spammy keywords, large sections of escaped JavaScript code, etc. Using the &lt;a href="http://support.google.com/websearch/bin/answer.py?hl=en&amp;answer=136861"&gt;site: operator&lt;/a&gt; query or &lt;a href="http://www.google.com/alerts"&gt;Google Alerts&lt;/a&gt; may come in handy if you’re looking for a simple, cost efficient solution.&lt;/li&gt;
&lt;li&gt;Keep a record of signups and try to identify typical spam patterns like form completion time, number of requests sent from the same IP address range, user-agents used during signup, user names or other form-submitted values chosen during signup, etc. Again, these may not always be conclusive.&lt;/li&gt;
&lt;li&gt;Keep an eye on your webserver log files for sudden traffic spikes, especially when a newly-created site is receiving this traffic, and try to identify why you are spending more bandwidth and processing power.&lt;/li&gt;
&lt;li&gt;Try to monitor your free web hosting service for phishing and malware-infected pages. For example, you can use the &lt;a href="http://code.google.com/apis/safebrowsing/"&gt;Google Safe Browsing API&lt;/a&gt; to regularly test URLs from your service, or &lt;a href="http://googleonlinesecurity.blogspot.com/2010/09/safe-browsing-alerts-for-network.html"&gt;sign up to receive alerts for your AS&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Come up with a few sanity checks. For example, if you’re running a local Polish free web hosting service, what are the odds of thousands of new and legitimate sites in Japanese being created overnight on your service? There’s a number of tools you may find useful for language detection of newly created sites, for example &lt;a href="https://www.google.com/search?q=language+detection+library"&gt;language detection libraries&lt;/a&gt; or the &lt;a href="http://code.google.com/apis/language/translate/v2/getting_started.html"&gt;Google Translate API v2&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
Last but not least, if you run a free web hosting service be sure to monitor your services for sudden activity spikes that may indicate a spam attack in progress.&lt;br /&gt;
&lt;br /&gt;
For more tips on running a quality hosting service, have a look at &lt;a href="http://googlewebmastercentral.blogspot.com/2011/12/tips-for-hosting-providers-and.html"&gt;our previous post&lt;/a&gt;. Lastly, be sure to sign up and verify your site in &lt;a href="http://www.google.com/webmasters"&gt;Google Webmaster Tools&lt;/a&gt; so we may be able to notify you when needed or if we see issues.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/105243650144707611158/posts?rel=author"&gt;Fili Wiese&lt;/a&gt; (Ad Traffic Quality Team) &amp; &lt;a href="https://plus.google.com/105501965108087246894?rel=author"&gt;Kaspar Szymanski&lt;/a&gt; (Search Quality Team)&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-1923029865464690730?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=3rRZdevWNHw:oCSN5IDGjdw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/3rRZdevWNHw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/1923029865464690730/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=1923029865464690730" title="12 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1923029865464690730?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1923029865464690730?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/3rRZdevWNHw/keeping-your-free-hosting-service.html" title="Keeping your free hosting service valuable for searchers" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-mccdz1f3Sqs/T1ZfwzrRrWI/AAAAAAAAHu0/M2PQquYVjis/s72-c/spam.png" height="72" width="72" /><thr:total>12</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/keeping-your-free-hosting-service.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkABQHw9eSp7ImA9WhVTGUQ.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-782928193290867210</id><published>2012-03-05T16:45:00.005-08:00</published><updated>2012-03-05T16:45:51.261-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-05T16:45:51.261-08:00</app:edited><title>Safely share access to your site in Webmaster Tools</title><content type="html">Webmaster Level: All&lt;br /&gt;&lt;br /&gt;We just launched a new feature that allows you as a verified site owner to grant limited access to your site's data and settings in Webmaster Tools. You've had the ability to &lt;a href="http://googlewebmastercentral.blogspot.com/2010/03/sharing-verification-love.html"&gt;grant full verified access to others&lt;/a&gt; for a couple of years. Since then we've heard lots of requests from site owners for the ability to grant limited permission for others to view a site's data in Webmaster Tools without being able to modify all the settings. Now you can do exactly that with our new User administration feature. &lt;br /&gt;&lt;br /&gt;On the Home page when you click the "Manage site"  drop-down menu you'll see the menu option that was previously titled "Add or remove owners"  is now "Add or remove users."&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/-W9FLHtl4tSo/T1VYGjHE2WI/AAAAAAAAAjs/kezrZTBl2uY/s1600/manage-menu.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 127px;" src="http://2.bp.blogspot.com/-W9FLHtl4tSo/T1VYGjHE2WI/AAAAAAAAAjs/kezrZTBl2uY/s400/manage-menu.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5716572171544090978" /&gt;&lt;/a&gt;&lt;br /&gt;Selecting the "Add or remove users" menu item will take you to the new User administration page where you can add or delete up to 100 users and specify each user's access as "Full" or "Restricted." Users added via the User administration page are tied to a specific site. If you become unverified for that site any users that you've added will lose their access to that site in Webmaster Tools. Adding or removing verified site owners is still done on the owner verification page which is linked from the User administration page.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/-JkwqCaqeq6I/T1VYOv6hkEI/AAAAAAAAAj4/MW4fRWpwrdw/s1600/user-administration.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 233px;" src="http://3.bp.blogspot.com/-JkwqCaqeq6I/T1VYOv6hkEI/AAAAAAAAAj4/MW4fRWpwrdw/s400/user-administration.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5716572312420061250" /&gt;&lt;/a&gt;&lt;br /&gt;Granting  a user "Full"  permission means that they will be able to view all data and take most actions, such as changing site settings or demoting sitelinks.  When a user’s permission is set to "Restricted"  they will only have access to view most data, and can take some actions such as using Fetch as Googlebot and configuring message forwarding for their account. Restricted users will see a “Restricted Access” indicator at various locations within Webmaster Tools.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/-eUOF1hp8WSc/T1VYUPFfyxI/AAAAAAAAAkE/V34rYsbnOQ0/s1600/home-restricted.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 114px;" src="http://3.bp.blogspot.com/-eUOF1hp8WSc/T1VYUPFfyxI/AAAAAAAAAkE/V34rYsbnOQ0/s400/home-restricted.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5716572406686927634" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/-QykuZOOZO_M/T1VYbnJS6yI/AAAAAAAAAkQ/jFW-KGP-yGI/s1600/dashboard-restricted.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 92px;" src="http://4.bp.blogspot.com/-QykuZOOZO_M/T1VYbnJS6yI/AAAAAAAAAkQ/jFW-KGP-yGI/s400/dashboard-restricted.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5716572533404396322" /&gt;&lt;/a&gt;&lt;br /&gt;To see which features and actions are accessible for Restricted users, Full users and site owners, visit our &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=2451999"&gt;Permissions Help Center article&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;We hope the addition of Full and Restricted users makes management of your site in Webmaster Tools easier since you can now grant access within a more limited scope to help prevent undesirable or unauthorized changes.  If you have questions or feedback about the new User administration feature please let us know in our &lt;a href="http://www.google.com/support/forum/p/Webmasters/label?lid=462896acb3879639&amp;hl=en"&gt;Help Forum&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Written by &lt;a href="https://profiles.google.com/jonathansimonweb/about"&gt;Jonathan Simon&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-782928193290867210?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=cG4iFWzqj0c:agfm1BWeSTQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/cG4iFWzqj0c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/782928193290867210/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=782928193290867210" title="13 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/782928193290867210?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/782928193290867210?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/cG4iFWzqj0c/safely-share-access-to-your-site-in.html" title="Safely share access to your site in Webmaster Tools" /><author><name>Jonathan Simon</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="25" src="http://1.bp.blogspot.com/_pHpYpU4sgSI/SMhyM5_f0ZI/AAAAAAAAAKg/YJ8TC10DZSs/S220/possibly-habitable.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-W9FLHtl4tSo/T1VYGjHE2WI/AAAAAAAAAjs/kezrZTBl2uY/s72-c/manage-menu.png" height="72" width="72" /><thr:total>13</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/03/safely-share-access-to-your-site-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUUMQn4zcCp7ImA9WhVTGU8.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-8853610517934966951</id><published>2012-02-21T14:00:00.002-08:00</published><updated>2012-03-04T22:01:23.088-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-03-04T22:01:23.088-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="crawling and indexing" /><category scheme="http://www.blogger.com/atom/ns#" term="search results" /><title>Using schema.org markup for videos</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Videos are one of the most common types of results on Google and we want to make sure that your videos get indexed. Today, we're also launching video support for schema.org. &lt;a href="http://schema.org/"&gt;Schema.org&lt;/a&gt; is a joint effort between Google, Microsoft, Yahoo! and Yandex and is now the recommended way to describe videos on the web. The markup is very simple and can be easily added to most websites.&lt;br /&gt;
&lt;br /&gt;
Adding &lt;a href="http://schema.org/VideoObject"&gt;schema.org video markup&lt;/a&gt; is just like adding any other schema.org data. Simply define an itemscope, an itemtype=”http://schema.org/VideoObject”, and make sure to set the name, description, and thumbnailUrl properties. You’ll also need either the embedURL — the location of the video player — or the contentURL — the location of the video file. A typical video player with markup might look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&amp;lt;div itemscope itemtype="http://schema.org/VideoObject"&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;h2&amp;gt;Video: &amp;lt;span itemprop="name"&amp;gt;Title&amp;lt;/span&amp;gt;&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;meta itemprop="duration" content="T1M33S" /&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;meta itemprop="thumbnailUrl" content="thumbnail.jpg" /&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;meta itemprop="embedURL"&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;content="http://www.example.com/videoplayer.swf?video=123" /&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;object ...&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;embed type="application/x-shockwave-flash" ...&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;/object&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;lt;span itemprop="description"&amp;gt;Video description&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
Using schema.org markup will not affect any &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=80472"&gt;Video Sitemaps&lt;/a&gt; or &lt;a href="http://support.google.com/webmasters/bin/answer.py?answer=183265"&gt;mRSS feeds&lt;/a&gt; you're already using. In fact, we still recommend that you also use a Video Sitemap because it alerts us of any new or updated videos faster and provides advanced functionality such as country and platform restrictions.&lt;br /&gt;
&lt;br /&gt;
Since this means that there are now a number of ways to tell Google about your videos, choosing the right format can seem difficult. In order to make the video indexing process as easy as possible, we’ve put together a series of videos and articles about video indexing in our new Webmasters EDU microsite.&lt;br /&gt;
&lt;br /&gt;
For more information, you can go through the &lt;a href="http://developers.google.com/webmasters/videosearch"&gt;Webmasters EDU video articles&lt;/a&gt;, read the full &lt;a href="http://schema.org/VideoObject"&gt;schema.org VideoObject specification&lt;/a&gt;, or ask questions in the &lt;a href="http://www.google.com/support/forum/p/Webmasters/label?lid=3db4effde15c5be6&amp;amp;hl=en"&gt;Webmaster Help Forum&lt;/a&gt;. We look forward to seeing more of your video content in Google Search.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/110923955128198892585" rel="author"&gt;Henry Zhang&lt;/a&gt;, Product Manager&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-8853610517934966951?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=XWZmCRT9X_s:kH8RWMnENcc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/XWZmCRT9X_s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/8853610517934966951/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=8853610517934966951" title="27 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8853610517934966951?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8853610517934966951?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/XWZmCRT9X_s/using-schemaorg-markup-for-videos.html" title="Using schema.org markup for videos" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><thr:total>27</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/02/using-schemaorg-markup-for-videos.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU8ERXc8fip7ImA9WhRbF0Q.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-7779705456512954117</id><published>2012-02-09T06:30:00.000-08:00</published><updated>2012-02-09T06:30:04.976-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-09T06:30:04.976-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="performance" /><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="general tips" /><title>Preparing your site for a traffic spike</title><content type="html">Webmaster level: Intermediate&lt;br /&gt;
&lt;br /&gt;
It’s a moment any site owner both looks forward to, and dreads: a huge surge in traffic to your site (yay!) can often cause your site to crash (boo!). Maybe you’ll create a piece of viral content, or get Slashdotted, or maybe Larry Page will get a tattoo and your site on tech tattoos will be suddenly in vogue.&lt;br /&gt;
&lt;br /&gt;
Many people go online immediately after a noteworthy event—a political debate, the death of a celebrity, or a natural disaster—to get news and information about that event. This can cause a rapid increase in traffic to websites that provide relevant information, and may even cause sites to crash at the moment they’re becoming most popular. While it’s not always possible to anticipate such events, you can prepare your site in a variety of ways so that you’ll be ready to handle a sudden surge in traffic if one should occur:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;b&gt;Prepare a lightweight version of your site.&lt;/b&gt;&lt;br /&gt;Consider maintaining a lightweight version of your website; you can then switch all of your traffic over to this lightweight version if you start to experience a spike in traffic. One good way to do this is to have a mobile version of your site, and to make the mobile site available to desktop/PC users during periods of high traffic. Another low-effort option is to just maintain a lightweight version of your homepage, since the homepage is often the most-requested page of a site as visitors start there and then navigate out to the specific area of the site that they’re interested in. If a particular article or picture on your site has gone viral, you could similarly create a lightweight version of just that page.&lt;br /&gt;A couple tips for creating lightweight pages:&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;Exclude decorative elements like images or Flash wherever possible; use text instead of images in the site navigation and chrome, and put most of the content in HTML.&lt;/li&gt;
&lt;li&gt;Use static HTML pages rather than dynamic ones; the latter place more load on your servers. You can also cache the static output of dynamic pages to reduce server load.&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;&lt;b&gt;Take advantage of stable third-party services.&lt;/b&gt;&lt;br /&gt;Another alternative is to host a copy of your site on a third-party service that you know will be able to withstand a heavy stream of traffic. For example, you could create a copy of your site—or a pared-down version with a focus on information relevant to the spike—on a platform like &lt;a href="http://sites.google.com/"&gt;Google Sites&lt;/a&gt; or &lt;a href="http://www.blogger.com/"&gt;Blogger&lt;/a&gt;; use services like &lt;a href="http://docs.google.com/"&gt;Google Docs&lt;/a&gt; to host documents or forms; or use a &lt;a href="https://www.google.com/search?q=content+delivery+network"&gt;content delivery network&lt;/a&gt; (CDN).&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Use lightweight file formats.&lt;/b&gt;&lt;br /&gt;If you offer downloadable information, try to make the downloaded files as small as possible by using lightweight file formats. For example, offering the same data as a plain text file rather than a PDF can allow users to download the exact same content at a fraction of the filesize (thereby lightening the load on your servers). Also keep in mind that, if it’s not possible to use plain text files, PDFs generated from textual content are more lightweight than PDFs with images in them. Text-based PDFs are also &lt;a href="http://googlewebmastercentral.blogspot.com/2011/09/pdfs-in-google-search-results.html"&gt;easier for Google to understand and index fully&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;Make tabular data available in CSV and XML formats.&lt;/b&gt;&lt;br /&gt;If you offer numerical or tabular data (data displayed in tables), we recommend also providing it in CSV and/or XML format. These filetypes are relatively lightweight and make it easy for external developers to use your data in external applications or services in cases where you want the data to reach as many people as possible, such as in the wake of a natural disaster.&lt;/li&gt;
&lt;/ul&gt;
We’d love to hear your tips and tricks for weathering traffic spikes—come join us in our &lt;a href="http://www.google.com/support/forum/p/Webmasters?hl=en"&gt;Webmaster Help Forum&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://profiles.google.com/SusanMoskwa/" rel="author"&gt;Susan Moskwa&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-7779705456512954117?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=jLWMMAXA5t4:A21timk3XSk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/jLWMMAXA5t4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/7779705456512954117/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=7779705456512954117" title="24 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7779705456512954117?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7779705456512954117?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/jLWMMAXA5t4/preparing-your-site-for-traffic-spike.html" title="Preparing your site for a traffic spike" /><author><name>Susan Moskwa</name><uri>http://www.blogger.com/profile/05717026520818293919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://3.bp.blogspot.com/_W4BgN_rLRKo/TMimEx69oFI/AAAAAAAAAFw/QhgGjILEWbY/S220/Susan1.png" /></author><thr:total>24</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/02/preparing-your-site-for-traffic-spike.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkYBSX46cSp7ImA9WhRbEk8.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-3172469708302491944</id><published>2012-01-26T13:53:00.000-08:00</published><updated>2012-02-02T16:15:58.019-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-02-02T16:15:58.019-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="products and services" /><title>More Options for Google+ Badges</title><content type="html">Webmaster Level: All&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Update on February 2, 2012:&lt;/b&gt; The new &lt;a href="https://developers.google.com/+/plugins/badge/config#utm_source=blog&amp;utm_medium=wmt&amp;utm_campaign=bbv2"&gt;Google+ badge&lt;/a&gt; is now out of preview and available to all users on all sites. &lt;br /&gt;
&lt;br /&gt;
When we &lt;a href="http://googleplusplatform.blogspot.com/2011/11/grow-your-audience-with-google.html"&gt;launched Google+ pages&lt;/a&gt; in November, we also &lt;a href="http://googleplusplatform.blogspot.com/2011/11/google-badges-drive-engagement-with.html"&gt;released Google+ badges&lt;/a&gt; to promote your Google+ presence right on your site. Starting today in &lt;a href="http://www.google.com/+/learnmore/platform-preview/#utm_source=blog&amp;utm_medium=wmc&amp;utm_campaign=bbv2"&gt;developer preview&lt;/a&gt; (and soon available to all your users), we're adding more options for integrating the Google+ badge into your website. You can &lt;a href="https://developers.google.com/+/plugins/badge/preview/#utm_source=blog&amp;utm_medium=wmc&amp;utm_campaign=bbv2"&gt;configure a badge&lt;/a&gt; with a width that fits your site design and choose a version that works better on darker sites. You'll also see that Google+ badges now include the unified +1 and circle count that we added to Pages &lt;a href="http://adwords.blogspot.com/2011/12/new-tools-and-controls-to-manage-your.html"&gt;last month&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s1600/android+on+gplus.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s1600/android+on+gplus.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-__W1Dw5viGE/Tx2KuwaWtKI/AAAAAAAAAKA/f_IubNyIW6A/s1600/black+background.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-__W1Dw5viGE/Tx2KuwaWtKI/AAAAAAAAAKA/f_IubNyIW6A/s1600/black+background.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-0mZjvQoG3iw/Tx2K0MivD4I/AAAAAAAAAKI/FmTDFmuAuH8/s1600/box.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-0mZjvQoG3iw/Tx2K0MivD4I/AAAAAAAAAKI/FmTDFmuAuH8/s1600/box.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
If you’re still considering whether to add a Google+ badge on your website, consider this: We recently looked at top sites using the badge and found that, on average, the badge accounted for an additional 38% of followers. When you add the badge visitors to your website can discover your Google+ page and connect in a variety of ways: they can follow your Google+ page, +1 your site, share your site with their circles, see which of their friends have +1’d your site, and click through to visit your Google+ page.&lt;br /&gt;
&lt;br /&gt;
The Google+ Badge makes it easy for your fans to find and follow you on Google+. With these additional options, we hope it's even easier to &lt;a href="https://developers.google.com/+/plugins/badge/preview/#utm_source=blog&amp;utm_medium=wmc&amp;utm_campaign=bbv2"&gt;create a badge&lt;/a&gt; that fits your website.&lt;br /&gt;
&lt;br /&gt;
Follow the conversation on &lt;a href="https://plus.google.com/111732915546499031731/posts/hfGuxwPz6UX"&gt;Google+&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="post-author"&gt;Posted by &lt;a href="https://plus.google.com/u/0/111732915546499031731/posts"&gt;Lucy Hadden&lt;/a&gt;, Software Engineer, Google+&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-3172469708302491944?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=cz8fpcIdFYQ:qVyCvrTL5zs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/cz8fpcIdFYQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/3172469708302491944/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=3172469708302491944" title="20 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3172469708302491944?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/3172469708302491944?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/cz8fpcIdFYQ/new-google-badges.html" title="More Options for Google+ Badges" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-J0H4sfENRjA/Tx2Klekr_3I/AAAAAAAAAJ4/LJkkRnUB_xM/s72-c/android+on+gplus.png" height="72" width="72" /><thr:total>20</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/01/new-google-badges.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CE4FQ3o-fCp7ImA9WhRUGUg.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-8778288711330580372</id><published>2012-01-26T12:18:00.000-08:00</published><updated>2012-01-30T11:48:32.454-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-30T11:48:32.454-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="webmaster tools" /><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="sitemaps" /><category scheme="http://www.blogger.com/atom/ns#" term="beginner" /><title>What’s new with Sitemaps</title><content type="html">Webmaster level: All&lt;br /&gt;&lt;br /&gt;Sitemaps are a way to tell Google about pages on your site.  Webmaster Tools’ Sitemaps feature gives you feedback on your submitted Sitemaps, such as how many Sitemap URLs have been indexed, or whether your Sitemaps have any errors. Recently, we’ve added even more information! Let’s check it out:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/-Sr5zQQ6dBvE/TyGrsqMX8ZI/AAAAAAAAAjg/Z5vWYLEX2IU/s1600/sitemaps.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 271px;" src="http://1.bp.blogspot.com/-Sr5zQQ6dBvE/TyGrsqMX8ZI/AAAAAAAAAjg/Z5vWYLEX2IU/s400/sitemaps.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5702027386956542354" /&gt;&lt;/a&gt;&lt;br /&gt;The Sitemaps page displays details based on content-type. Now statistics from Web, Videos, Images and News are featured prominently. This lets you see how many items of each type were submitted (if any), and for some content types, we also show how many items have been indexed.  With these enhancements, the new Sitemaps page replaces the Video Sitemaps Labs feature, which will be retired.&lt;br /&gt;&lt;br /&gt;Another improvement is the ability to test a Sitemap. Unlike an actual submission, testing does not submit your Sitemap to Google as it only checks it for errors. Testing requires a live fetch by Googlebot and usually takes a few seconds to complete. Note that the initial testing is not exhaustive and may not detect all issues; for example, errors that can only be identified once the URLs are downloaded are not be caught by the test.&lt;br /&gt;&lt;br /&gt;In addition to on-the-spot testing, we’ve got a new way of displaying errors which better exposes what types of issues a Sitemap contains.  Instead of repeating the same kind of error many times for one Sitemap, errors and warnings are now grouped, and a few examples are given. Likewise, for Sitemap index files, we’ve aggregated errors and warnings from the child Sitemaps that the Sitemap index encloses. No longer will you need to click through each child Sitemap one by one.&lt;br /&gt;&lt;br /&gt;Finally, we’ve changed the way the “Delete” button works. Now, it removes the Sitemap from Webmaster Tools, both from your account and the accounts of the other owners of the site. Be aware that a Sitemap may still be read or processed by Google even if you delete it from Webmaster Tools. For example if you reference a Sitemap in your robots.txt file search engines may still attempt to process the Sitemap. To truly prevent a Sitemap from being processed, remove the file from your server or block it via robots.txt.&lt;br /&gt;&lt;br /&gt;For more information on Sitemaps in Webmaster Tools and how Sitemaps work, visit our &lt;a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=156184"&gt;Help Center&lt;/a&gt;. If you have any questions, go to &lt;a href="http://www.google.com/support/forum/p/Webmasters?hl=en"&gt;Webmaster Help Forum&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span class="byline-author"&gt;Written by &lt;a href="https://plus.google.com/109580420505325614989/"&gt;Kamila Primke&lt;/a&gt;, Software Engineer, Webmaster Tools&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-8778288711330580372?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=D-4mvh6bIpA:ftK-q61oMho:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/D-4mvh6bIpA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/8778288711330580372/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=8778288711330580372" title="25 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8778288711330580372?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/8778288711330580372?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/D-4mvh6bIpA/whats-new-with-sitemaps.html" title="What’s new with Sitemaps" /><author><name>Jonathan Simon</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="25" src="http://1.bp.blogspot.com/_pHpYpU4sgSI/SMhyM5_f0ZI/AAAAAAAAAKg/YJ8TC10DZSs/S220/possibly-habitable.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-Sr5zQQ6dBvE/TyGrsqMX8ZI/AAAAAAAAAjg/Z5vWYLEX2IU/s72-c/sitemaps.png" height="72" width="72" /><thr:total>25</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/01/whats-new-with-sitemaps.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ak8EQH47fSp7ImA9WhRUFU8.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-1601408254194811828</id><published>2012-01-25T14:00:00.000-08:00</published><updated>2012-01-25T14:00:01.005-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-25T14:00:01.005-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="webmaster tools" /><category scheme="http://www.blogger.com/atom/ns#" term="intermediate" /><category scheme="http://www.blogger.com/atom/ns#" term="advanced" /><category scheme="http://www.blogger.com/atom/ns#" term="beginner" /><title>Update to Top Search Queries data</title><content type="html">Webmaster level: All&lt;br /&gt;
&lt;br /&gt;
Starting today, we’re updating our Top Search Queries feature to make it better match expectations about search engine rankings. Previously we reported the average position of all URLs from your site for a given query. As of today, we’ll instead average only the top position that a URL from your site appeared in.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;An example&lt;/b&gt;&lt;br /&gt;
Let’s say Nick searched for [bacon] and URLs from your site appeared in positions 3, 6, and 12. Jane also searched for [bacon] and URLs from your site appeared in positions 5 and 9. Previously, we would have averaged all these positions together and shown an Average Position of 7. Going forward, we’ll only average the highest position your site appeared in for each search (3 for Nick’s search and 5 for Jane’s search), for an Average Position of 4.&lt;br /&gt;
&lt;br /&gt;
We anticipate that this new method of calculation will more accurately match your expectations about how a link's position in Google Search results should be reported.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;How will this affect my Top Search Queries data?&lt;/b&gt;&lt;br /&gt;
This change will affect your Top Search Queries data going forward. &lt;b&gt;Historical data will not change.&lt;/b&gt; Note that the change in calculation means that the Average Position metric will usually stay the same or decrease, as we will no longer be averaging in lower-ranking URLs.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://google.com/webmasters/tools/home?utm_source=wmc&amp;amp;utm_medium=blog&amp;amp;utm_campaign=topqueries"&gt;Check out the updated Top Search Queries data&lt;/a&gt; in the Your site on the web section of Webmaster Tools. And remember, you can also &lt;a href="http://googlewebmastercentral.blogspot.com/2011/12/download-search-queries-data-using.html"&gt;download Top Search Queries data programmatically&lt;/a&gt;!&lt;br /&gt;
&lt;br /&gt;
We look forward to providing you a more representative picture of your Google Search data. Let us know what you think in our &lt;a href="http://www.google.com/support/forum/p/Webmasters?hl=en"&gt;Webmaster Forum&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by &lt;a href="https://plus.google.com/107151885064924654655/about" rel="author"&gt;Chris Anderson&lt;/a&gt;, Google Analytics team, and &lt;a href="https://profiles.google.com/SusanMoskwa" rel="author"&gt;Susan Moskwa&lt;/a&gt;, Webmaster Trends Analyst&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-1601408254194811828?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=cZYhzKdpjsE:e2NC9zjlQj8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/cZYhzKdpjsE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/1601408254194811828/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=1601408254194811828" title="22 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1601408254194811828?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/1601408254194811828?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/cZYhzKdpjsE/update-to-top-search-queries-data.html" title="Update to Top Search Queries data" /><author><name>Susan Moskwa</name><uri>http://www.blogger.com/profile/05717026520818293919</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="29" src="http://3.bp.blogspot.com/_W4BgN_rLRKo/TMimEx69oFI/AAAAAAAAAFw/QhgGjILEWbY/S220/Susan1.png" /></author><thr:total>22</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/01/update-to-top-search-queries-data.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMEQnwzfSp7ImA9WhRUFUw.&quot;"><id>tag:blogger.com,1999:blog-32069983.post-7936189290836523708</id><published>2012-01-25T10:00:00.000-08:00</published><updated>2012-01-25T10:00:03.285-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-01-25T10:00:03.285-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="products and services" /><title>Making form-filling faster, easier and smarter</title><content type="html">Webmaster Level: Intermediate&lt;br /&gt;
&lt;br /&gt;
One of the biggest bottlenecks on any conversion funnel is filling out an online form – shopping and registration flows all rely on forms as a crucial and demanding step in accomplishing the goals of your site. For many users, online forms mean repeatedly typing common information like our names and addresses on different sites across the web – a tedious task that causes many to give up and abandon the flow entirely.&lt;br /&gt;
&lt;br /&gt;
Chrome’s Autofill and other form-filling providers help to break down this barrier by remembering common profile information and pre-populating the form with those values. Unfortunately, up to now it has been difficult for webmasters to ensure that Chrome and other form-filling providers can parse their form correctly. Some &lt;a href="http://tools.ietf.org/rfc/rfc4112.txt"&gt;standards exist&lt;/a&gt;; but they put onerous burdens on the implementation of the website, so they’re not used much in practice.&lt;br /&gt;
&lt;br /&gt;
Today we’re pleased to announce support in Chrome for an experimental new “autocomplete type” attribute for form fields that allows web developers to unambiguously label &lt;code&gt;text&lt;/code&gt; and &lt;code&gt;select&lt;/code&gt; fields with common data types such as ‘full-name’ or ‘street-address’. With this attribute, web developers can drive conversions on their sites by marking their forms for auto-completion without changing the user interface or the backend.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-ehBmhE11Tic/Tx9PVKSQyeI/AAAAAAAAHjM/2tiVU_uOSaQ/s1600/Sherlock%2BScreenshot.png" imageanchor="1" style=""&gt;&lt;img border="0" height="141" width="400" src="http://2.bp.blogspot.com/-ehBmhE11Tic/Tx9PVKSQyeI/AAAAAAAAHjM/2tiVU_uOSaQ/s400/Sherlock%2BScreenshot.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Just add an attribute to the input element, for example an email address field might look like:&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;&amp;lt;input type=”text” name=”field1” x-autocompletetype=”email” /&amp;gt;&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
We’ve been working on this design in collaboration with several other autofill vendors. Like any early stage proposal we expect this will change and evolve as the web standards community provides feedback, but we believe this will serve as a good starting point for the discussion on how to best support autofillable forms in the HTML5 spec. For now, this new attribute is implemented in Chrome as &lt;code&gt;x-autocompletetype&lt;/code&gt; to indicate that this is still experimental and not yet a standard, similar to the &lt;code&gt;webkitspeech&lt;/code&gt; attribute we &lt;a href="http://chrome.blogspot.com/2011/04/everybodys-talking-and-translating-with.html"&gt;released&lt;/a&gt; last summer.&lt;br /&gt;
&lt;br /&gt;
For more information, you can read the &lt;a href="http://wiki.whatwg.org/wiki/Autocompletetype"&gt;full text of the proposed specification&lt;/a&gt;, ask questions on the &lt;a href="http://www.google.com/support/forum/p/Webmasters?hl=en"&gt;Webmaster help forum&lt;/a&gt;, or you can share your feedback in the &lt;a href="http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2011-December/034198.html"&gt;standardization discussion&lt;/a&gt;!&lt;br /&gt;
&lt;br /&gt;
&lt;span class="byline-author"&gt;Posted by Ilya Sherman, Software Engineer&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/32069983-7936189290836523708?l=googlewebmastercentral.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/blogspot/amDG?a=GeNzwid6SXE:VsG9FM-eduQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/blogspot/amDG?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/blogspot/amDG/~4/GeNzwid6SXE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://googlewebmastercentral.blogspot.com/feeds/7936189290836523708/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=32069983&amp;postID=7936189290836523708" title="22 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7936189290836523708?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/32069983/posts/default/7936189290836523708?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/amDG/~3/GeNzwid6SXE/making-form-filling-faster-easier-and.html" title="Making form-filling faster, easier and smarter" /><author><name>Maile Ohye</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="16" height="16" src="http://img2.blogblog.com/img/b16-rounded.gif" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-ehBmhE11Tic/Tx9PVKSQyeI/AAAAAAAAHjM/2tiVU_uOSaQ/s72-c/Sherlock%2BScreenshot.png" height="72" width="72" /><thr:total>22</thr:total><feedburner:origLink>http://googlewebmastercentral.blogspot.com/2012/01/making-form-filling-faster-easier-and.html</feedburner:origLink></entry></feed>

