`;document.getElementById("output").innerText = content;
}function copyContent() {
let text = document.getElementById("output").innerText;
navigator.clipboard.writeText(text);
alert("Copied!");
}function downloadHTML() {
let text = document.getElementById("output").innerText;
let blob = new Blob([text], { type: "text/html" });
let a = document.createElement("a");
a.href = URL.createObjectURL(blob);
a.download = "landing-page.html";
a.click();
}