Submitted over 4 years ago
Responsive page made with using CSS grid and vanilla Javascript
@g4rry420
Design comparison
SolutionDesign
Community feedback
- @mattstuddertPosted over 4 years ago
Nice work, Gurkiran! Here are some pointers after taking a look at your code:
- You've got a
h1
on the page that you've hidden and then you've got thealt
text of "logo" on the logo. If you want the company name to be theh1
here, I'd just add the company name as thealt
text and wrap theh1
around it. - For the
h2
text, you've uppercased the content in the HTML itself. Try to avoid doing that as some screen reader software will read this content letter-by-letter which makes that content inaccessible to screen reader users. Instead, write it normally in your HTML and then usetext-transform: uppercase;
in your CSS to visually uppercase the text to match the design. - You're using the
br
tag a lot to space out your content. I'd recommend avoiding this, as you could usepadding
andmargin
in your CSS and have much more control with less code.
I hope this helps. Keep it up! 👍
1@g4rry420Posted over 4 years ago@mattstuddert Thank You for your comment and I try not to make these mistakes in the future.
0 - You've got a
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