Adicione o seguinte código em seu site, dentro da tag head:
<script>
function SocialShare(url) {
window.open('https://poppeople.com.br/share?url=' + url, '', 'height=600,width=800');
}
</script>
Em seguida, coloque o botão de compartilhamento após alterar o URL que deseja compartilhar com sua página HTML:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Além disso, você pode usar este código para compartilhar a página atual:
<button onclick="SocialShare(window.location.href)">Share</button>
Exemplo: