Design comparison
SolutionDesign
Community feedback
- @Zy8712Posted 12 months ago
Your site looks pretty good. Some issues I noticed are:
- a typo on the word "Improve"
- you image fails to load as you linked it as
images/image-qr-code.png
in you<img>
tag. You don't have a "images" folder so you should just link it asimage-qr-code.png
or./image-qr-code.png
Hope I was able to help
0 - @MelvinAguilarPosted 12 months ago
Hello there π. Good job on completing the challenge !
I have one suggestion about your code that might interest you.
- Since you didn't upload a folder named /images in your GitHub repository, you should modify the src attribute to correctly display the QR code image.
βββ ββββ ββββ ββββ ββββ ββββ ββ Do:
<img alt="QR code" src="image-qr-code.png">
.βββ ββββ ββββ ββββ ββββ ββββ ββ Don't:
<img src="images/image-qr-code.png" alt="QR code" />
.I hope you find it useful! π
Happy coding!
0
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