如何从静态html页面分享工作到facebook或twitter或linkedin

How to share a job from static html page to facebook or twitter or linkedin

本文关键字:工作 facebook 分享 twitter linkedin 静态 html      更新时间:2023-09-26

嗨,我在我的职业页面上发布了一些工作,使用html, css实现了一个静态网页,没有后端功能部分。我需要分享这些工作到Facebook或推特或链接在点击这些按钮,任何人都可以帮助我如何添加共享选项的工作门户网站。这里是小提琴链接

<div class="digitalmarketingassociate">
                  <span class="digit">Digital Marketing Associate</span>
                  <div class="applynow">Apply Now</div>
                  <div class="moreinfo accordion" >More Info</div>
                    <div class="panel">
                        <p>                                     
                            <h3 class="job">Roles and Responsibilities</h3>
                            <ul class="rolesand">                                   
                                <li class="rolesandres">Responsibility for hands on interaction within social media sites such as facebook, twitter etc.</li>
                                <li class="rolesandres">Responsibility for hands on interaction with off-site social properties ; other people blogs, other company facebook fan pages,forums etc.</li>                                 
                            </ul>
                 <h3 class="job">How to apply</h3>
                            <p class="howtoapp">Email us your resume along with your Linkedin profile on  ></a> Alternatively, you can also apply via <img src="image/testimonial/linkedin.png" alt="linkedin" /></p>
                            <h3  class="job">Share this job</h3>
                            <p>
                            <img src="image/career page/facebook.png" alt="facebook" class="careerfacebook"/>
                            <img src="image/career page/twitter.png" alt="twitter" class="careertwitter" />
                            <img src="image/career page/linkedin.png" alt="linkedin" class="careerlinkedin"/>
                            <img src="image/career page/whatsapp.png" alt="whatsapp"  class="careerwhatsapp"/>
                            <img src="image/career page/email.png" alt="email" class="careeremail" /></p>
                        </p>
                    </div>
                </div> 

我认为您正在创建邮件,并希望简单的链接来分享您的url。

这里是示例共享链接

/*Facebook Share*/
<a href="https://www.facebook.com/sharer/sharer.php?u=http%3A//yourpage.com">Share on Facebook</a>
/*Twitter Share*/
<a href="https://twitter.com/home?status=This%20is%20Awesome%20page!!%20http%3A//yourpage.com">Share on Twitter</a>
/*Google Plus*/
<a href="https://plus.google.com/share?url=http%3A//yourpage.com">Share on Google+</a>
/*LinkedIn*/
<a href="https://www.linkedin.com/shareArticle?mini=true&url=http%3A//yourpage.com&title=Title%20of%20your%20Page&summary=Optional%20Summary&source=http%3A//yoursource.com">Share on LinkedIn</a>
/*What's App from Mobile*/
<a href="whatsapp://send?text=The text to share!" data-action="share/whatsapp/share">Share via Whatsapp</a>
/*Email*/
<a href="mailto:abc@xyz.com?&subject=Your Subject&body=your%20mail%20content">Send Email</a>