rel="author" tags

HTML tags with a rel="author" attribute can be used to identify the author of an article, blog post or other online document. Advantages of adding rel="author" links include:

The rel="author" attribute can be used in three different ways:

Example:

<head>
   <link rel="author"
      href="https://plus.google.com/112416945907493718478/about"
      title="Robert Scoble on Google+"/>
</head>

Example:

<p>by <a rel="author"
   href="/author/arthur-conan-doyle.html">Arthur Conan Doyle</a></p>

Example:

<p>by <a rel="author"
   href="https://plus.google.com/112416945907493718478/about"
   title="Robert Scoble on Google+"
>Robert Scoble on Google+
   <img
      src="http://www.google.com/images/icons/ui/gprofile_button-32.png"
      width="32" height="32">
</a></p>