Website Builder
function downloadWebsite() {
const title = document.getElementById("title").value || "My Website";
const content = document.getElementById("content").value || "Hello, world!";
const bgColor = document.getElementById("bgColor").value;
const htmlContent = `
title
title
{content}
`;
const blob = new Blob([htmlContent], { type: 'text/html' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = "my-website.html";
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}