Пример кода<button id="share-button" type="button">Поделиться</button>
<script>
  var shareButton = document.getElementById('share-button');
  shareButton.addEventListener('click', function () {
    if (navigator.share) {
      console.log("Congrats! Your browser supports Web Share API")
      navigator.share({
        title: "Название вашей страницы, например из Title",
        text: "Короткий текст, который будет передаваться в предпросмотр ссылки",
        url: window.location.href
      })
    } else {
      console.log("Sorry! Your browser does not support Web Share API")
    }
  })
</script>