Latest solutions
Mobile-First Fylo landpage, with responsive layout using CSS.
#styled-componentsSubmitted almost 3 years ago
Latest comments
- @soma123power@itsguim
Hey!! Good job on this challenge! ✌️
You could use a wrapper/container class within your footer so you can limit the expansion of your items, instead of modifying the <footer> tag itself, since the footer will naturally fit the entire width of the page if you do not limit it.
You should also ident your markup, to prevent errors in tag closures and for better readability.
Here are some tips to fix some issues :
- You should increase your heading level one by one. <h1>, then <h2>, <h3>...
- It's always recommended to nest sections inside a <main> tag.
Regardless, you did a great job, hope you find this useful!. Happy Coding! :)
Marked as helpful - @Samuel-Amaro@itsguim
Hey!! Nice work on completing this challenge! 👏
Here are some tips :
- You should increase your heading level one by one. <h1>, then <h2>...
- It's better to use the tag <section> to nest the content inside main. <aside> is usually for side content like side navigations, etc.
- You should only use one <nav> per page, this is usually reserved for the navigation section.
- Anchor tags should always have discernible text.
Regardless, you did an excellent job on this, hope you find this useful!. Happy Coding! :)
Marked as helpful