Design comparison
SolutionDesign
Solution retrospective
This is my second project. I'm a beginner with Bootstrap.
Any feedback will be appreciated.
Community feedback
- @mattstuddertPosted almost 5 years ago
Nice work, Alex! You've done a really good job. Here are a few pointers after taking a look at your code:
- You've got
h1
andh3
headings, but noh2
. Avoid skipping heading levels unnecessarily as it can cause accessibility issues with the content hierarchy. - You've made the site responsive, which is awesome. Your media query is currently set to this:
@media screen and (min-width: 375px) and (max-width: 992px)
, which means the layout breaks for anyone on a screen smaller than375px
(like an iPhone 5 or 6). You'd be better just to remove themin-width
condition entirely.
Really nice work on the challenge. Your solution looks great. Keep it up!
1@AlexrjjPosted almost 5 years ago@mattstuddert Thank you very much! I'll follow your tips and update my Github repo.
Thank you again, mate!
0 - You've got
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