Design comparison
SolutionDesign
Solution retrospective
This is my first challenge
Community feedback
- @adamjamesturner93Posted over 3 years ago
Hey,
Congrats on your first challenge!
Your looks nice and clean which is great, very easy to read and follow. Your media queries are nice and clear too, especially like the fact you abstracted them away for cleanliness! Great to see using CSS Grid too - a really nice solution :)
A few areas to improve: mostly around Semantic and accessible markup:
- Images: Whenever you have images, always provide a valid alt tag - this is critical for users using screen readers.
- Titles: Only have a single h1 rendered on a page, this is read by screenreaders as the Page Title, and so having multiple leads to confusion and a lack of clarity. Use CSS to create styles, HTML to provide semantic markup.
- divs: you have a lot of divs where they really aren't needed. I try to consider them a last resort! For example, maybe removing the
<div class="container">
, and asection
for each column, and replace the innerdiv
with anarticle
.
They're small details, and things that can easily be solved. So genuinely - a great first challenge! 🤩
2@ouuoussamaPosted over 3 years ago@adamjamesturner93 i will keep this in consedration thank u for ur feedback
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