Submitted over 1 year ago
CSS GRID AND RESPONSIVE CSS USING MEDIA QUERIES
@Mattological
Design comparison
SolutionDesign
Solution retrospective
how do i get my images to show
Community feedback
- @FluffyKasPosted over 1 year ago
Hello! The images won't show up because you seem to reference your local machine in the image sources, for example:
<img src="C:\Users\hp\Desktop\learning to code\testimonials-grid-section-main\images\image-jonathan.jpg" loading="lazy" alt="Daniel"/>
Instead, depending on the file structure of the project it should be something like this:
<img src="./images/image-jonathan.jpg" loading="lazy" alt="Daniel"/>
You need to reference the relative path to your image folder from your html file.
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