Skip to content

Latest commit

 

History

History
74 lines (52 loc) · 2.38 KB

File metadata and controls

74 lines (52 loc) · 2.38 KB

Frontend Mentor - QR code component solution

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.

Table of contents

Overview

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.

Screenshot

The screenshot of my solution

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • Mobile-first workflow

What I learned

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;
}

Continued development

  • Improve responsiveness for different screen sizes
  • Write cleaner HTML and CSS

Useful resources

  • 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.

Author