Design comparison
SolutionDesign
Community feedback
- @hitmorecodePosted 8 days ago
Congratulations looks good. Just one thing that you can fix
- On the Why us section you used one p tag and used br to break the text to different lines. Try to avoid this, only use br when necessary. In this case you can just use a p tag for eacht line or you can use li.
// do this <ul> <li>Tutorials by industry experts</li> <li>Peer & expert code review</li> <li>Coding exercises</li> <li>Access to our GitHub repos</li> <li>Community forum</li> <li>Flashcard decks</li> <li>New videos every week</li> </ul> // or this <p>Tutorials by industry experts</p> <p>Peer & expert code review</p> <p>Coding exercises</p> <p>Access to our GitHub repos</p> <p>Community forum</p> <p>Flashcard decks</p> <p>New videos every week</p>
I hope you find this helpful. Keep it up 👌👍
Marked as helpful1
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