Latest solutions
Latest comments
- @michaelbulaongdev@michaelbulaongdev
Thank you for this. I will try these out.
- @gustavhuey@michaelbulaongdev
Hi,
Great work on this. In order to show the background image, you can try to add something like this in your css file.
body { background-image: url("images/pattern-background-desktop.svg"); background-repeat: no-repeat; background-size: contain; background-color: hsl(225, 100%, 94%); }
I hope this helps. Happy coding! :)
Marked as helpful - @Aliyu-Saidu@michaelbulaongdev
Hi,
Looking at your repository, the image file is located in your root folder. However, in your index.html, it is still routing from the "images" folder.
<img src="./images/image-qr-code.png">
Either add an "images" folder in your repository root then move the image file into that folder, or edit the <img src=""> in your index.html in order to fetch the image file from the correct address.
Then re-run the build to deploy changes in your live site.
I hope this feedback helps.
Happy coding! :)
Marked as helpful