Design comparison
Solution retrospective
-What did you find difficult while building the project? -Which areas of your code are you unsure of? -Do you have any questions about best practices?
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @tiger8707, Congratulations on completing this challenge!
Your solution its almost done and I’ve some tips to help you to improve it:
1.It's even better to use
relative units
asrem
orem
that have a better fit if you want your site more accessible between different screen sizes and devices.REM
andEM
does not just apply to font size, but to all sizes as well.2.When you download the project files there’s a file called
style-guide.md
where you can find information such ashsl color codes
and thefont-size
for the headings.This is the correct color for the backgroundbody { background-color: #F3EBE4);}
3.Using
<picture>
you’ve more control over the elements and its better than using the product image as<img>
orbackground-image
. Look that for SEO and search engine reasons it isn't a better practice to import this product image with CSS since this will make it harder to the image. You can manage both images inside the<picture>
tag and use the html to code to set when the images should change setting the devicemax-width
depending of the device (phone / computer) Here’s a guide about how to usepicture
:https://www.w3schools.com/tags/tag_picture.asp
✌️ I hope this helps you and happy coding!
Marked as helpful1@omar-jalalPosted about 2 years ago@correlucas Thanks, didn't know about the <picture> tag it's exactly what i needed!
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