Design comparison
SolutionDesign
Community feedback
- @tossik8Posted about 1 year ago
Great work!
I would make your web page more responsive because the image does not load for mobile devices. Try to add images based on the size of the screen. For that you can replace your
<img/>
tag with something like this:<picture> <source srcset="your image for mobile devices" media="(max-width:400px)" /> <img src="your image for desktop devices" alt="" /> </picture>
Marked as helpful0@waltertayaPosted about 1 year agoThank you for your feedback. I have notice the problem was on path to the image.
0
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