used grid and flex

Solution retrospective
ability to use Grid and Flex without stress
What challenges did you encounter, and how did you overcome them?i encountered challenges with the hamburger menu because it was my first time of doin it but after much thinking and the help of depsek aii overcomed it
What specific areas of your project would you like help with?my github please if anybody can help me i would appreciate when i run my code with live server it works perfectly but when i visit my site in github i shows only the html leaving out the markup and imgs i need serious help it happened with my last challenge too
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@johnnygerard
The image URLs are not correct.
Your website is sending requests like
GET https://dannyx-huberf.github.io/images/icon-hamburger.svg
. You're getting 404 responses because your website is athttps://dannyx-huberf.github.io/landingPage/
.You should use relative paths.
You can try
<img src="./images/icon-hamburger.svg" alt="">
instead of<img src="/images/icon-hamburger.svg" 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