`:''} `; } function gen() { const html = genPage(); const frame = $('#preview'); frame.srcdoc = html; } function downloadHTML() { const html = genPage(); const blob = new Blob([html], {type:'text/html'}); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'coming-soon.html'; a.click(); URL.revokeObjectURL(a.href); } gen(); GZ.renderToolPage({ category: 'dev', titleKey: 'toolTitle', descKey: 'toolDesc', howToSteps: ['step1','step2','step3','step4'], related: [ {icon:'📱', href:'/dev/webmanifest.html', name:'PWA Manifest'}, {icon:'📄', href:'/dev/htaccess.html', name:'.htaccess'}, {icon:'🔒', href:'/text/privacy-policy-generator.html', name:'Privacy Policy'}, {icon:'📋', href:'/text/terms-of-service-generator.html', name:'Terms of Service'}, ] });