Design comparison
SolutionDesign
Community feedback
- @motuncodedPosted about 1 month ago
Weldone!!!
Here is a list of suggestion
-
the alt attribute of the image need to be filled and should not be empty and it should have a descriptive information about the image.
<img src="image-qr-code.png" alt="QR code Image" />
-
The div around the image can be change to
<figure>
as the image container and<figcaption>
for the caption for the image.
<figure className="image mb-4"> <img src="image-qr-code.png" alt="QR code lmage" className="w-full rounded-lg" /> <figcaption>Scan the code to improve your front-end skills</figcaption> </figure>
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