how to add Facebook, Google+ and twitter like/share button on my website, to sharing details of my website. because, i tried the following code in my website for google+. But, it's only sharing my website pic not the description and title of my website

<meta itemprop="name" content="MySMSBuddy">
<meta itemprop="description" content="Description of my webpage">
<meta itemprop="image" content="http://eravikant.com/images/image.png">

<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>

Any help and idea will be appreciated !!!

link|improve this question

71% accept rate
Have you done a search for these, such as "Google+ button" or "Facebook Like button" on StackOverflow? Those very simple queries come up with a whole slew of previously asked questions. I imagine you could get a lot of help from reading some of those. – Kevek Sep 6 '11 at 17:16
i searched.. but, my problem is, when i'm trying to share my website details using google+ it's only showing pic not title and description of my website. – cool_ravi Sep 6 '11 at 17:21
feedback

1 Answer

up vote 3 down vote accepted

Those sites use the title tag for page title, and meta name="description" for description (not itemprop="description".

<title>Title of your page</tile>
<meta name="description" content="Description of your page" /> 

For Facebook, you can also use open graph meta tags:

 <meta property="og:title" content="Title"/>
 <meta property="og:description" content="Description"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.