Design comparison
Solution retrospective
any suggestions for improvement are welcome
Community feedback
- @bccpadgePosted 3 months ago
Hello @Yashbabani0. Congratulations on completing this challenge!!!🎉
I have few tips you might be interested in to improve your solution.
In your
index.html
file, you should change the<title>
so users who look at your website know what they are looking at.Example:
<title>Frontend Mentor | Huddle landing page with curved sections</title>
For each React component, it's best practice to use HTML Semantic Elements improves accessibility.
Using
<div>
is a non-semantic which means it doesn't describe the content on the page.Let's take your header component for example
- use
header
tag - don't wrap everything in
div
- there should only be one
<h1>
on every page
I hope you find this useful and don't hesitate to reach out if you have any questions
Marked as helpful0 - use
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