Đinh Huỳnh Nhi - Bio
Đinh Huỳnh Nhi
Designer | Illustrator | Digital & Traditional Art
Passionate about turning ideas into beautiful visuals, from paper sketches to digital masterpieces.
About me
Follow me on socials
Let’s create something amazing together!
✨
const cta = document.getElementById('cta');
const popup = document.getElementById('popup');
const emailBtn = document.getElementById('emailBtn');
const portfolioBtn = document.getElementById('portfolioBtn');
const closeBtn = document.getElementById('closeBtn');
cta.addEventListener('click', () => {
popup.classList.remove('hidden');
});
closeBtn.addEventListener('click', () => {
popup.classList.add('hidden');
});
emailBtn.addEventListener('click', () => {
window.location.href = 'mailto:your.email@example.com';
});
portfolioBtn.addEventListener('click', () => {
window.open('https://www.behance.net/yourprofile', '_blank');
});