@101Amine
Posted
β’ Hello @SamedLepir, congratulation on completing this challenge!
1 - The image doesn't show because u'll need to add a dot before the image path, './images/..'
2 - I think it would be much better to just use the img tag directly <img src='..' alt='..' />
3 - And as Mr @Hyron mentioned in one of his comments, instead of using margin to center the div you can use flexbox
body {
background-color: hsl(212, 46%, 89%);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
Hope this was helpful for you, happy coding
Marked as helpful
@SamedLepir
Posted
@101Amine Thanks buddy, it was helpful :)