Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

QR Code Component Solution [Using Semantic HTML5 markup & CSS Grids]

@franciscusagnew

Desktop design screenshot for the QR code component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

This was my first challenge with Frontend Mentor, I found myself thinking... what a wonderful concept & service they have provided myself and others like me who are passionate, motivated, & constantly curious about web development & its steady evolution.

I had a lot of fun completing this challenge! I initially considered integrating TailwindCss, React & TypeScript for my solution, but decided to use only semantic HTML, CSS, & a simple layout using CSS grids.


  
    
    
      
        Improve your front-end skills by building projects.
      
        Scan the QR code to visit Frontend Mentor and take your coding skills to the next level
    
  

.container {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: 'card';
    grid-template: "card";
    justify-content: center;
}

.card {
    grid-area: card;
    background-color: hsl(0, 0%, 100%);
    width: 320px;
    height: 499px;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 16px 16px 40px;
    outline: 1px solid hsl(0, 0%, 80%);
    box-shadow: 5 5 5px 0 hsl(0, 0%, 80%);
    max-height: 499px;
    max-width: 320px;
}

What challenges did you encounter, and how did you overcome them?

I did not encounter any challenges in creating a solution.

Community feedback

@emzzz56

Posted

Perfect

0

@franciscusagnew

Posted

Thank you @emzzz56! 🙏🏽 😊

0

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord