Contact Us

    ${esc(tagline)}

    ${phone?``:''} ${address?`
    Address${esc(address)}
    `:''} ${showSocial?``:''}
    ${showMap?`
    `:''}

    © ${new Date().getFullYear()} ${esc(name)}. All rights reserved.

    `; $('#output').textContent = html; } function esc(s) { return String(s).replace(/&/g,'&').replace(//g,'>').replace(/"/g,'"'); } function doDownload() { const html = $('#output').textContent; if (!html) return; const blob = new Blob([html], { type: 'text/html' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = 'contact.html'; a.click(); } generate(); GZ.renderToolPage({ category: 'text', titleKey: 'toolTitle', descKey: 'toolDesc', howToSteps: ['step1','step2','step3','step4'], related: [ {icon:'📧', href:'/text/email-template.html', name:'Email Template'}, {icon:'✉️', href:'/text/email-signature.html', name:'Email Signature'}, {icon:'🔒', href:'/text/privacy-policy-generator.html', name:'Privacy Policy'}, {icon:'📋', href:'/text/terms-of-service-generator.html', name:'Terms of Service'}, ] });