product-preview-card-component-main

Please log in to post a comment
Log in with GitHubCommunity feedback
- @tossik8
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 helpful
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