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

Card QR Code

@gabriel-rocha-pimentel

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?

Next time I would have used a simpler technology, doing with react was very tired and inefficiet.

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

It wasn't exactly a challenge, but I noticed that I am very disorganized when developing a project and I plan to improve that.

What specific areas of your project would you like help with?

I'm accept advice about responsivity.

Community feedback

P

@mayankdrvr

Posted

Congratulations Gabriel for completing this challenge. Your design matches the solution very well.

Here is an observation-

  1. Below 503px width of screen, the text and card gets partially hidden and the text does not wrap. Maybe, you can make it more responsive by setting the maximum width of card to be upto 100% of width of its parent container. See if using this CSS property in image styling can make the image more responsive- max-width: 100%;
  2. Avoid using <div> element in html file and use semantic html elements throughout the code for better web accessibility.
  3. Try to use the Block Element Modifier(BEM) naming method as a good practice of naming classes for referencing html elements in the css file.
  4. Google Fonts provides the option to load fonts via <link> tags or an @import statement. The <link> code snippet includes a preconnect resource hint and therefore will likely result in faster stylesheet delivery than using @import version. Importing google fonts in the html head section is a good practice instead of importing them in the css file-
<head>
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Lexend+Deca&family=Outfit:wght@400;700&display=swap" rel="stylesheet">
</head>

Awesome solution and keep it up.

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