Design comparison
SolutionDesign
Solution retrospective
This is my first submission, so I struggled with a few things. I had a hard time getting the images to show up on github pages and the process of setting up all of the files in order correctly. Hope to get better through practice, any feedback is welcome.
Community feedback
- @MelvinAguilarPosted about 2 years ago
Hi @Pike1868 ๐, good job for completing this challenge and welcome to the Frontend Mentor Community! ๐
In answer to your question, the error in the images is in the path you put in the "src" attribute:
Using relative file paths:
<img src="./assets/images/image-qr-code.png" alt="your_alt_text" class="w-56 my-4 rounded-lg"> <img src="assets/images/image-qr-code.png" alt="your_alt_text" class="w-56 my-4 rounded-lg">
Update your icon:
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
Good Job and happy coding !
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