lunes, 8 de septiembre de 2025

Generador de Invitación

Descargar Invitación Patrono Escolar

`; document.getElementById("downloadBtn").addEventListener("click", () => { const blob = new Blob([htmlContent], { type: "text/html" }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "invitacion.html"; a.click(); URL.revokeObjectURL(url); });