Responsive card component, css flex, and box shadow
Design comparison
Solution retrospective
Hello, I want to know if my HTML is really semantic, I only used "main" element for the card and anything else is "div"s, because I couldn't find any other semantic element to use inside the card.
Community feedback
- @PhoenixDev22Posted almost 3 years ago
Greeting BasemAmr , Congratulation on completing your First Frontend mentor project, your solution looks nice. I think you have done a great work for your first challenge.
• Replace the heading
<h2 class="card-name normal-text">Equilibrium #3429</h2>
by <h1> to solve the accessibility issue click here to read more.• You should have wrapped "Equilibrium #3429" in an anchor <a>.
• Setting the
alt
text for the images<img src="images/icon-ethereum.svg" alt="Clock Icon"> <img src="images/icon-view.svg" alt="Icon View">
<img src="images/icon-clock.svg" alt="Ethereum Icon">`to an empty string. That's because the purpose of those images are mostly decorative and need not be announced by assistive technology like screen readers.• You can wrap this
<span class="normal-text"> Jules Wyvern</span>
by an anchor tag .You can check my solution here.
I really hope this feedback helps. Happy coding
Marked as helpful1@BasemAmrPosted almost 3 years agoHi, @PhoenixDev22 the feedback is very helpful, and I'm going to fix remaining problems thank you very much.
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