Design comparison
Solution retrospective
kindly give your valuable feedback
Community feedback
- @VCaramesPosted about 2 years ago
Congrats @abymani on completing this challenge!
To make you content semantically correct, you wan to have you <nav> element inside the <header> element and use <section> elements instead of <div> for each section. So it should look something like this (only did the main parent elements):
<body> <header> <nav></nav> <h1></h1> </header> <main> <section>The Leader in...</section> <section>Our Creations</section> </main> <footer></footer> </body>
Essentially, you want to use the proper semantic elements to make your content accessible, improve its SEO and make it easier to understand.
Attached is a link with more detail on HTML elements: https://developer.mozilla.org/en-US/docs/Web/HTML/Element
Marked as helpful0@abymaniPosted about 2 years ago@vcarames Thanks for the advice. I will surely work on it.
0
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