resume: shift to html/css/js

This commit is contained in:
Naman Sood 2023-01-17 18:08:28 -05:00
parent 10a5dcd205
commit 2b12da2e74
9 changed files with 660 additions and 153 deletions

7
js/resume.js Normal file
View file

@ -0,0 +1,7 @@
document.querySelectorAll('main a').forEach(el => {
const icon = document.createElement('i');
icon.classList.add('fa', 'fa-solid', 'fa-arrow-up-right-from-square');
el.appendChild(icon);
});
document.querySelector('#print').addEventListener('click', () => window.print());