Design comparison
SolutionDesign
Community feedback
- @YelemyahMPosted about 2 months ago
Hello coder ! You have done a great work !
I have a little suggestion that might interest you.
- Currently all images are loaded for all devices. To optimize loading speed, you can use
<picture>
tags to load images adapted to the device.
<picture> <source srcset="assets/desktop/image-woman-in-videocall.jpg" media="(min-width: 768px)"> <img src="assets/mobile/image-woman-in-videocall.jpg" alt="Woman in video call"> </picture> Hope it can be useful. Happy coding !
0 - Currently all images are loaded for all devices. To optimize loading speed, you can use
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