
Solution retrospective
Hey guys this is my first time here and here is the qr code component that I have built.
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@danielmrz-dev
Hello there!
Congrats on completing the challenge! ✅
Your solution looks great!
I have one suggestion:
- When using the tag
<img>
, make sure to set the correct path, otherwise your code won't be able to find the image. And if your code can't find it, it won't show.
📌 This is your code:
<img src="/images/image-qr-code.png" alt="">
📌 And here's the update with the correct path:
<img src="./images/image-qr-code.png" alt="">
The difference is just a dot but it's enough to prevent your image from showing.
I hope it helps!
Other than that, great job!
- When using the tag
- @Hangar5
Hello @Nkrumahb, how are you?
Good job, I just wanted to tell you that the image is not visible.
You have it configured like this: <img src="/images/image-qr-code.png" alt=""> You would have to eliminate / from the code, you would have something like this: <img src="images/image-qr-code.png" alt="">
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