Latest solutions
Latest comments
- @AyomiposiSoladoye@fkrunic
On Line 19 of
index.html
where the image is loaded, the path set isimages/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