Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @AyomiposiSoladoye

    Submitted

    After deploying my project, the image isn't displaying. What could have gone wrong?

    This is my first project having started learning HTML and CSS this August. I forgot a lot of the basic things I had learnt and I had to try a bunch of things to see which worked. This really tested my problem solving skills.

    P
    fkrunic• 310

    @fkrunic

    Posted

    On Line 19 of index.html where the image is loaded, the path set is images/image-qr-code.png:

    <img id="img-qr" src="images/image-qr-code.png">
    

    However, looking at the directory structure of the project repository, it looks like image-qr-code.png is at the top level. Try changing it to:

    <img id="img-qr" src="./image-qr-code.png">
    

    as there doesn't appear to be an images directory. Hope this helps!

    Marked as helpful

    0