Responsive Product Review Card using CSS Flexbox

Solution retrospective
Ensuring that the content remains responsive as the screen width changes.
I tried to solve this by limiting the size(width) of the card
What specific areas of your project would you like help with?I reckon my biggest challenge is identifying the different fonts used on the page. i.e. I can tell that the fonts are different but I can't tell which font is which.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @rafikncib
use this <picture> <source media="(min-width: 786px)" srcset="./images/image-product-desktop.jpg"> <img src="./images/image-product-mobile.jpg" alt="image product mobile"> </picture> in the place of this
<section class="imageSection"> <img class="mobileImage" src="./images/image-product-mobile.jpg" alt="Perfume Image" width="686" height="480"> <img class="desktopImage" src="./images/image-product-desktop.jpg" alt="Perfume Image" width="600" height="900"> </section>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