Build your resume here!

YOUR PERSONAL INFO












YOUR EDUCATIONAL BACKGROUND


















function saveFormAsTextFile() { var textToSave = 'rnn'+ 'First Name: ' + document.getElementById('first_name').value + ' rn' + 'Last Name: ' + document.getElementById('last_name').value + ' rn' + 'Email: ' + document.getElementById('user_email').value + ' rn' + 'Phone Number: ' + document.getElementById('phone_number').value + ' rn' + 'Location: ' + document.getElementById('location').value + ' rn' + 'LinkedIn: ' + document.getElementById('linkedin').value + ' rn' 'School Name: ' + document.getElementById('school_name').value + ' rn'; var textToSaveAsBlob = new Blob([textToSave], {type:"text/plain"}); var textToSaveAsURL = window.URL.createObjectURL(textToSaveAsBlob); var fileNameToSaveAs = document.getElementById("filename").value; var downloadLink = document.createElement("a"); downloadLink.download = fileNameToSaveAs; downloadLink.innerHTML = "Download File"; downloadLink.href = textToSaveAsURL; downloadLink.onclick = destroyClickedElement; downloadLink.style.display = "none"; document.body.appendChild(downloadLink); downloadLink.click(); } function destroyClickedElement(event) { document.body.removeChild(event.target); }