Design comparison
Solution retrospective
glad to hear your advices!
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @piniass, Congratulations on completing this challenge!
Great code and great solution! I’ve few suggestions for you that you can consider adding to your code:
1.Use units as
rem
orem
instead ofpx
to improve your performance by resizing fonts between different screens and devices. These units are better to make your website more accessible. REM does not just apply to font size, but all sizes as well.2.Add the website favicon inserting the svg image inside the
<head>
.<link rel="icon" type="image/x-icon" href="./images/favicon-32x32.png">
3.You can create a media query to save space in the
pricing section
to make each information in a different row. Here’s the code for this media query.@media (max-width: 350px) { .plan { display: flex; justify-content: center; align-items: center; background-color: rgba(248,249,254,255); height: 100px; width: 300px; margin-left: 25px; flex-direction: column; } }
✌️ I hope this helps you and happy coding!
2
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