Design comparison
SolutionDesign
Community feedback
- @hitmorecodePosted about 1 year ago
Nice well done, I have a few pointer
- Inside
.top
you have adiv
inside thatdiv
you have twop
tags. You gave bothp
tags anid="txt"
, this is something you must never do. An id is a unique identifier an id can only occur once on a page. - The use of the second
p
tag is not necessary, you can place the entire content inside onep
tag. - You used two
h1
tags on this page, this is also something you should never do. You can only have oneh1
on a page. This has to do with the way search engines work. Just do a search about this. - On the last card you used a
p
for all those descriptions. It's hard to see what the order is, because the position of the content depends on the width of the container. In this case it would be better do use ap
tag for each description or you can useul
with a fewli
for each description.
0 - Inside
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