Free Resume Builder

Step 1 of 2

Select your background

Choose an industry to pre-fill your resume with professional sections.

Ready! Paste into Word (Ctrl+V)
`; const blob = new Blob([htmlString], { type: 'text/html' }); await navigator.clipboard.write([new ClipboardItem({ 'text/html': blob })]); const toast = document.getElementById('copy-toast'); if (toast) { toast.style.opacity = '1'; setTimeout(() => toast.style.opacity = '0', 2000); } }