Resume Builder
`;
const source = 'data:application/vnd.ms-word;charset=utf-8,' + encodeURIComponent(sourceHTML);
const fileDownload = document.createElement("a");
fileDownload.href = source;
fileDownload.download = 'resume.doc';
fileDownload.click();
}function sendEmail() {
const form = document.forms['resume-form'];
const name = form['name'].value;
const subject = `Resume of ${name}`;
const body = `Hi,%0D%0A%0D%0APlease find attached the resume of ${name}.%0D%0ARegards,%0D%0A${name}`;
window.location.href = `mailto:?subject=${encodeURIComponent(subject)}&body=${body}`;
}
