Design comparison
SolutionDesign
Community feedback
- @Michael-AlansPosted 14 days ago
use semantic HTML while coding, It helps browsers to load your site very well. For instance, you should use <header> element for the caption.
<header> <h2>Reliable, efficient delivery</h2> <h2>Powered by Technology</h2> <p>Our Artificial Intelligence powered tools use millions of project data points to ensure that your project is successful</p> </header>Also use CSS variable to declare all the colors for your project first.
:root { --Red: hsl(0, 78%, 62%); --Cyan: hsl(180, 62%, 55%); --Orange: hsl(34, 97%, 64%); --Blue: hsl(212, 86%, 64%); --VeryDarkBlue: hsl(234, 12%, 34%); --GrayishBlue: hsl(229, 6%, 66%); --VeryLightGray: hsl(0, 0%, 98%); }
Marked as helpful0
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