Design comparison
Solution retrospective
-I don't know if I chose the best names for the classes.
-I would like feedback on the responsive part.
Community feedback
- @andreasremdtPosted over 1 year ago
Hey @ricardosilvasx,
Congrats on solving the challenge, well done! Your solution looks good, I like that you wrapped everything in a
main
tag which is a good practice. Here are some additional suggestions:- Try and incorporate a heading. Every website needs at least one heading to explain the content. Always start with the highest level (
h1
) and then descend down when it makes sense. In this example, I would make the text Improve your front-end skills by building projects the main heading. - You don't need the
div.qrcode
, just apply the styles of it to themain
element directly. - Your image doesn't have any
width
andheight
attributes, which I would advice you to set. They allow the browser to better calculate the image dimensions and hence optimize rendering, which results in a better loading experience.
Keep up the good work and let me know if you have any questions!
Marked as helpful0 - Try and incorporate a heading. Every website needs at least one heading to explain the content. Always start with the highest level (
- @Kamlesh0007Posted over 1 year ago
Congratulations on completing the challenge!🎉. That's a great achievement, and I'm sure you put a lot of effort into it. I really liked the way you approached the challenge and the code you wrote. You demonstrated a good understanding of the concepts and applied them effectively to solve the problem.I have a few suggestions to improve your code further. You need to add some code in body tag to make the container center as well as responive as per design. Here's a code snippet that u need to add:
body { background-color: hsl(212, 45%, 89%); display: flex; flex-direction: column; justify-content: center; min-height: 100vh; align-items: center; font-family: 'Outfit', sans-serif; }
remove below code .qrcode { margin-top: 250px; }
Marked as helpful0
Please log in to post a comment
Log in with GitHubJoin 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