Add the following code in your site, inside the head tag:
<script>
function SocialShare(url) {
window.open('https://zvysujeme.cz/share?url=' + url, '', 'height=600,width=800');
}
</script>
Потім помістіть кнопку "Поширити", змінивши URL-адресу, якою ви хочете поділитися, на HTML-код сторінки:
<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>
Приклад: