Link-in-Bio

Your mini link page

Live preview · download a standalone page to host anywhere

"; const blob = new Blob([html], { type: "text/html" }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "link-in-bio.html"; document.body.appendChild(a); a.click(); setTimeout(() => { URL.revokeObjectURL(url); a.remove(); }, 500); toast("Page downloaded"); } }); renderForm(); renderPreview(); })();