Utilizei HTML, CSS, Flexbox, BEM, gulpfile, sass

Please log in to post a comment
Log in with GitHubCommunity feedback
- @CarlosLDC
Hey davidsaymon,
I was checking out your code and noticed that the class names could be a bit more consistent. Keeping them consistent makes the code easier to read and maintain. For example, instead of:
<h1 class="header__title">Title</h1> <h2 class="header__title__subTitle">Subtitle</h2>
You could use:
<h1 class="header__title">Title</h1> <h2 class="header__subtitle">Subtitle</h2>
This way, it's clear that both elements belong to the same block (header), and the naming is more consistent.
Join 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