Kehinde• 660
@jonathan401
Posted
Congratulations on completing this challenge 🎊🎊. Well a few suggestions:
- Let the div with class
container
be amain
element instead. - There should only be a
h1
element per page. So you make the otherh1
ah2
instead. - It's important that you don't write content in all caps in the html. You should change PERFUME to Perfume and then use the CSS
text-transform: uppercase;
in the CSS to make it all caps. - To remove that space from the image, you should add a picture element that can be used to render different images for different screen sizes. You could check out my solution here and if you're still not clear, you could reach out. Hope the little suggestions helped.
Once again, congratulations on completing this challenge 🎊🎊.
0