Design comparison
SolutionDesign
Community feedback
- @climb512Posted over 1 year ago
It looks like it has potential, but currently, I don't see your QR code image. You need to use a realtive path -- a file path that is relative to the index.html where you wrote the code.
-- I see:
<img class="image" src="/qr-code-component-main/images/image-qr-code.png" alt=""> -- Change that to:
<img class="image" src="./images/image-qr-code.png" alt=""> and you should see your image.You can also get in the habit of adding alt text for all your images.
Keep coding!
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