Design comparison
SolutionDesign
Community feedback
- @R3ygoskiPosted 6 months ago
Hello @starboush-t, congratulations on completing your project! Your solution looks very good.
I'd like to give you some tips regarding your HTML. I noticed that you used three
<h1>
, tags; usually, we only use one<h1>
tag. You can replace them with<h2>
.Also, I noticed that you used many
<div>
tags. They don't have semantic value, so this makes your project less semantic and less accessible. If you want to change this, I suggest changing some tags to semantic tags. For example:- <div class="container"> could be an `<article>` because it's self-explanatory.
- <div class="car__card"> could be a `<section>` because it stores similar elements.
Again, congratulations! If you need help, just write down here, and I'll try to help you as best as I can.
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