Submitted about 3 years ago
Responsive mobile first webpage built with Just HTML and CSS
@RandyKdev
Design comparison
SolutionDesign
Solution retrospective
Any suggestions are welcomed!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @RandyKdev 👋🏻
I've got a couple of accessibility suggestion for the project.
- For the star icon icons, add
aria-hidden="true”
, because they are for decoration. You can read more aboutaria-hidden
here. For example:<img class="star" src="./images/icon-star.svg" alt="" aria-hidden="true”>
- Next, the
alt
tag for the people should be their full names, like so<img class="profile-pic" src="./images/image-colton.jpg" alt="Colton Smith">
. - And since you followed the semantic rules of HTML, I suggest changing
<div class="header">...</div>
to<header class="header">...</header>
I hope this was helpful 👨🏻💻 other than that, you did an excellent job, well done. Cheers 👾
Marked as helpful1 - For the star icon icons, add
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