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

aadithya1551โ€ข 140

@aadithya1551

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


This Challenge helps me to put my knowledge into practice and i tried my best to complete this challenge.

Community feedback

@MelvinAguilar

Posted

Hello there ๐Ÿ‘‹. Good job on completing the challenge !

I have another small suggestion about your code that might interest you.

  • You should use a CSS reset. A CSS reset is a set of CSS rules that are applied to a webpage in order to remove the default styling of different browsers.

    CSS resets that are widely used:

I hope you find it useful! ๐Ÿ˜„

Happy coding!

Marked as helpful

0

aadithya1551โ€ข 140

@aadithya1551

Posted

Thank you for suggestion. It will be helpful for me and make it useful. Happy coding!

0
Bryan Liโ€ข 3,550

@Zy8712

Posted

Your site looks pretty good. Some things I think you should add/change are:

  • adding <main> tags around your page's main content for accessibility purposes
  • for the title of the card you should use <h1> instead of <span>. Also instead of line breaks you should use margin-left and margin-right to adjust how much space the text has before it shifts over to the next line
  • instead of using margin-top: 50px, you should try using flex box to center your card. It could look something like:
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

Hope you find this feedback useful ๐Ÿ‘

Marked as helpful

0

aadithya1551โ€ข 140

@aadithya1551

Posted

Thank you for your feedback and sharing your ideas with me.

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