This is a solution to the QR code component challenge on Frontend Mentor. Frontend Mentor challenges help me improve my coding skills by building realistic projects.
I completed the QR code component challenge from Frontend Mentor, where the goal was to create a simple card layout based on figma design using HTML and CSS. The project focused on building a clean and responsive UI while matching the design as closely as possible.
- Solution URL: Add solution URL here
- Live Site URL: Add live site URL here
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- Mobile-first workflow
I learned to write HTML and CSS; structuring HTML (using elements like div, img, h1, and p), styling with CSS (centering elements with flexbox, applying responsive design, etc).
<div>
<img src="hello.png" alt="greeting" />
<h1>Hello world!</h1>
<p>I learn to code</p>
</div>.my-css {
color: skyblue;
display: flex;
justify-content: center;
}- Improve responsiveness for different screen sizes
- Write cleaner HTML and CSS
- https://learn.shayhowe.com/ - This helped me to understand HTML and CSS for the very first time. I really liked this pattern and will use it going forward.
- https://www.w3schools.com/ - This is an amazing article which helped me finally understand HTML and CSS. I'd recommend it to anyone still learning this concept.
