Nerd Network

Welcome,

Whether you're new to our community or a returning friend, this is your personalised skin care hub. Here, you'll find everything you need to achieve your skin goals.
    `; // Create a Blob object with the content const blob = new Blob([content], { type: "application/msword" }); // Create a link element for downloading const link = document.createElement("a"); link.href = URL.createObjectURL(blob); link.download = filename; // Append the link, trigger the click, and remove it document.body.appendChild(link); link.click(); document.body.removeChild(link); }); });