This is my solution to the QR code component challenge on Frontend Mentor.
- Live Site URL: GitHub Page
- Semantic HTML5 markup
- CSS custom properties
- Mobile-first workflow
- Google Fonts - For fonts
During this project i learned how to use hsl and its benefits
Exemple of hsl in use:
.content {
background: hsl(0, 0%, 100%);
}
I don't really understand responsive design yet, so that's what I will focus on for the moment
- What is hsl - This is an amazing article which helped me finally understand hsl. I'd recommend it to anyone still learning this concept.
- GitHub - GustavoHNRamos