Design comparison
SolutionDesign
Community feedback
- @Lo-DeckPosted 28 days ago
Hi well done for this challenge,
I'll give this link you check out the mistake for HTML and CSS. 3WC validator. like
Duplicate ID talk <p id="talk">
you can't set severalID
it's only one.You need to use more semantic tag to improve your HTML, it's better for screen-reader and SEO.MDN
like
<div class="container">
to<main class="container">
.It's better to use
em
orrem
instead ofpx
. FreeCodeCamp. FreeCodeCamp.And try to center your website, I just add this to center it :
body{ display: flex; flex-direction: column; justify-content: center; align-items: center; }
Hope to be helpful.
Marked as helpful0
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