Design comparison
SolutionDesign
Solution retrospective
All positive quarries accepted
Community feedback
- @Agnik7Posted over 1 year ago
Hi, Congratulations on completing this challenge. I have some suggestions, which I think will help improve your skill.
- For the footer text, use the
footer
tag instead ofdiv
. - Wrap all the content inside the
body
tag, except thefooter
tag, inmain
tag. - Replace the
h2
tag with anh1
tag. This will get rid of the accessibility issue. - The image can't be viewed, because the code doesn't know where to search for the images folder. To fix that, add a
./
at the start of the source of theimg
tag.
Replace <img src="images/image-qr-code.png" alt="Qr"> with <img src="./images/image-qr-code.png" alt="Qr">
- For the container, instead of specifying the
width
, specify only themax-width
. This will help achieve responsiveness, and you will also not need themedia
query.
Hope this feedback helps you.
Have a nice day!!
0 - For the footer text, use the
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