Organized the stylesheets,converted fonts to woff.

This commit is contained in:
g* 2025-06-17 01:02:12 +02:00
commit fa2ec6c820
40 changed files with 631 additions and 660 deletions

View file

@ -1,3 +1,8 @@
/*
RESUME
*/
// Make elements visible as the user scrolls down the page by applying a class
window.addEventListener('scroll', function () {
const contents = document.querySelectorAll('.fade-in-up-section');
@ -10,3 +15,11 @@ window.addEventListener('scroll', function () {
}
});
});
// Get the name of the company from URL
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.has('name')) {
const paramValue = urlParams.get('name');
document.getElementById('companyName').innerHTML = ` ${paramValue}`;
}