This is my solution to the Social links profile challenge on Frontend Mentor (https://www.frontendmentor.io/challenges/social-links-profile-UG32l9m6dQ).
Users should be able to:
- See hover and focus states for all interactive elements on the page
- View the profile and links in a responsive layout
- See a fade-in animation on page load
Here is a preview of my solution: 
- Solution URL: (https://www.frontendmentor.io/solutions/responsive-profile-card-with-animation-D2ztLsejRX)
- Live Site URL: (https://paloma-cardozo.github.io/Social-Links-Profile/)
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Vanilla JavaScript
- Accessibility best practices
This challenge helped me solidify my understanding of how to:
- Create clean and semantic HTML structures
- Use Flexbox to create responsive layouts
- Improve interactivity with hover and focus states
- Add smooth animations on load using JavaScript (
DOMContentLoaded+classList) - Make components more accessible to keyboard users
window.addEventListener('DOMContentLoaded', () => {
const card = document.querySelector('.card');
card.classList.add('show');
});I want to continue working on:
- Improving my JavaScript skills to build more dynamic components
- Practicing BEM and naming conventions in CSS
- Adding dark/light themes with CSS and JavaScript
- Writing more accessible code for all users
- MDN Web Docs - My go-to documentation for anything HTML/CSS/JS.
- CSS Tricks - Helped me with layout.
- Google Fonts - I used it to incorporate the 'Inter' font.
- Frontend Mentor - @Paloma-Cardozo
- GitHub URL - Paloma-Cardozo
I would like to express my heartfelt thanks to my husband and my daughter, who keep reminding me every day why I love learning and creating. Their support and joy are my constant motivation.
I’m also grateful to my teachers at ReDI School for making web development feel less scary and more like an adventure.
Building this profile page may seem small, but for me it’s a symbol of progress, resilience, and the joy of learning something new.