আপোনাৰ ছাইটত, হেড টেগৰ ভিতৰত নিম্নলিখিত কোডটো যোগ কৰক:
<script> function SocialShare(url) { window.open('https://yohoni.com/share?url=' + url, '', 'height=600,width=800'); } </script>
তাৰ পিছত আপুনি আপোনাৰ পৃষ্ঠা এইচটিএমএলত ভাগ বতৰা কৰিব বিচৰা ইউআৰএল সলনি কৰাৰ পিছত শ্বেয়াৰ বুটামটো ৰাখক:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Also you can use this code to share the current page:
<button onclick="SocialShare(window.location.href)">Share</button>