
Blog preview card
Design comparison
Community feedback
- @CH1C0-zwPosted about 1 month ago
Hello fellow CODER seems like you had done everything correct except the linking of the images part. You used a relative link when you hadn't deployed your site onto the web but after deployment you should've changed the link type to ABSOLUTE link instead. This is your code: <img src="assets/images/image-avatar.webp" alt="profile"> <img src="assets/images/illustration-article.svg" alt="illustration-article">
Instead the fix is this: <img src="image-avatar.webp" alt="profile"> <img src="illustration-article.svg" alt="illustration-article">
Since non of the assets are no longer contained in any folder, plus in your github repository you did not upload said images. Upload the images into your repository, change your code and the images should appear properly.
0
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