Design comparison
SolutionDesign
Solution retrospective
All feedbacks are welcome
Community feedback
- @imadvvPosted about 2 years ago
Greeting Divine!!
I think the path to images need to update, because you removed the images folder, you need to remove it from src path too.
example :
from this.
<img class="pic" src="./images/image-equilibrium.jpg" alt="image-equilibrium">
to this.
<img class="pic" src="./image-equilibrium.jpg" alt="image-equilibrium">
and also to center the card on the middle of the page, you can use either grid or flex.
example using grid.
body { display: grid; place-content: center; min-height: 100vh; }
Hope this help!
Happy Codding, and have a Good day/night
Marked as helpful1
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