Retro 90s Website Generator
${content}
`; // Show download button document.getElementById('downloadHtml').classList.remove('hidden'); // Save HTML for download window.generatedHtml = websiteHtml; } function downloadHtml() { const blob = new Blob([window.generatedHtml], { type: 'text/html' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'retro-90s-website.html'; link.click(); }