Design comparison
Solution retrospective
Getting it to work and not wasting time doing it.
What challenges did you encounter, and how did you overcome them?Getting the image to load. I used a solution to help me.
What specific areas of your project would you like help with?Css.
Community feedback
- @boda0077Posted 7 months ago
Hi ,
you did great job over here but the image not displayed because your img path in HTML file is wrong that what you did :
<img src="./assets/image-qr-code.png" alt="QR code" />
this what you should do :
<img src="./images/image-qr-code.png" alt="QR code" />
hope i helped even a little bit .
Marked as helpful1@Codelearner123456Posted 6 months ago@b0da2003 it's not because of that because that is what I did now.
0 - @Grego14Posted 7 months ago
π Hello! π congratulations on completing the challenge! π
The image does not load because you are trying to access it in a non-existent folder! assets
src="./assets/image-qr-code.png"
should be:
src="./images/image-qr-code.png"
The way you use the br tag is incorrect and is considered bad practice, better use max-width or some other property to make the text take up less space.
Use flexbox to center the .table element, you must set the properties to its parent element, in this case the body.
I also recommend removing the default
margin: 8px
from the body element.I hope this helps! π
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