NFT preview card component

Solution retrospective
all feedbacks are welcome !
Please log in to post a comment
Log in with GitHubCommunity feedback
- @anoshaahmed
hey good job on this challenge! you should have at least one
<h1>
in your webpagehere is a list i made of accessibility issues & best practices
hope this helps :))
Marked as helpful - @NaveenGumaste
Hay ! Good Job you made it look nearly perfect to the preview
These below mentioned tricks will help you remove any Accessibility Issues
-> Add Main tag after body like it should be your container
-> For 1st heading or h1 tag, use header tag and then inside the header put your h1 or h2 etc
-> But use header tag only once in main heading element.
-> Don't use "p tag" inside the "span tag" instead use the "div tag" [span is a inline element ]
Keep up the good work!
Marked as helpful - @RioCantre
Hello there! Nice work with this challenge. Viewing your solution, you did well on implementing the hover state of the Hero image. I think you should considered the following as well...
- Add hover state for the font in the
header
withcolor: hsl(178, 100%, 50%);
andcursor: pointer;
- Remove the inline style inside the
span
and create a new rule set of.card-footer span
, addcolor:white
and hover state withcolor: hsl(178, 100%, 50%);
andcursor: pointer;
- Import the
attribution
style in the CSS folder and removestyle
tag - Add description to
alt
in theimg
, don't leave it blank
Hope this helps and Keep up the good work!
Marked as helpful - Add hover state for the font in the
Join 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