Doesn’t matter you are a company or a student!

document.addEventListener('DOMContentLoaded', function() { // Array of image URLs const imageUrls = [ "http://statssy.org/wp-content/uploads/2025/08/New-Project-3.png", "http://statssy.org/wp-content/uploads/2025/08/New-Project-4.png", "http://statssy.org/wp-content/uploads/2025/08/New-Project-5.png" ]; // Select all images inside portfolio cards const portfolioImages = document.querySelectorAll('.portfolio-img img'); // Change the images and apply size portfolioImages.forEach((img, index) => { if (imageUrls[index]) { img.src = imageUrls[index]; // Change the image source img.style.width = "48px"; // Set width to 48px img.style.height = "48px"; // Set height to 48px } }); });