Generator Landing Page Produk Digital
Generator Landing Page Produk Digital
`;
const blob = new Blob([htmlContent], {type: "text/html"});
const a = document.createElement("a");
a.href = URL.createObjectURL(blob);
a.download = "landingpage.html";
a.click();
}