Html 我应该如何建立一个社交分享吧

Html 我应该如何建立一个社交分享吧,html,Html,到目前为止,我有: <h2>share</h2> <ul class="sharing-cl" id="text"> <li><a class="sh-mail" href="">email</a></li> <li><a class="sh-feed" href="">feed</a></li>

到目前为止,我有:

<h2>share</h2>
        <ul class="sharing-cl" id="text"> 
        <li><a class="sh-mail" href="">email</a></li> 
        <li><a class="sh-feed" href="">feed</a></li> 
        <li><a href="">twitter</a></li>
        <li><a class="sh-face" href="http://www.facebook.com/sharer/sharer.php?src=bm&u=http%3A%2F%2Freddurrant.com">facebook</a></li> 
        <li><a class="sh-su" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freddurrant.com">stumbleupon</a></li> 
        <li><a class="sh-digg" href="http://digg.com/submit?phase=2&url=http%3A%2F%2Freddurrant.com&title=RED%20Photography&bodytext=A%20Photogaphy%20portfolio%20for%20Ryand%20Durrant">digg</a></li> 
        <div class="fb-like" data-href="http://www.reddurrant.com" data-send="false" data-layout="button_count" data-width="450" data-show-faces="false"></div>
    </ul>
共享
首先,我应该如何填写其余的链接

其次,当使用Facebook按钮时,我希望将缩略图设置为我指定的内容,即位于assets/img/thumbnail.png的缩略图 所以我试着用这个,这是你被告知要为like按钮做的:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="http://www.facebook.com/2008/fbml">

<meta property="og:title" content="RED Photography: Ryan Durrant - Home"/>
<meta property="og:url" content="http://www.reddurrant.com"/>
<meta property="og:image" content="assets/img/thumbnail.png"/>
<meta property="og:site_name" content="RED Photography"/>
<meta property="fb:admins" content="USER_ID"/>
<meta property="og:description" content="photography portfolio for Ryan Durrant"/>

但是没有运气

任何帮助都会很好,尤其是如果你能帮我把剩下的工作做好的话。要查看它的运行情况,请访问以下站点:

为电子邮件干杯试试看


对于您的rss提要,请尝试第二次指向url的尝试:mailto不只是将电子邮件发送给我,而我希望它发送到用户选择的地址吗?