Design comparison
Solution retrospective
Nothing at all. I used the same CSS tools like Flexbox
What challenges did you encounter, and how did you overcome them?Nothing at the moment.
What specific areas of your project would you like help with?Accessibility. Sometime a forget to apply it the every web site that I create.
Community feedback
- @cdanderson76Posted 6 months ago
I don't know how much closer to this solution you can get. Nice work!
As far as accessibility goes, there's one thing that I would point out. Looks like you're grabbing that avatar image by way of your 'style.css' file (line 100)...which is ok. But, this puts you in an accessibility disadvantage because you can't use the typical 'alt' attribute that you usually have in the HTML doc. What you CAN do is this:
<div class="author-avatar" role="img" aria-label></div>
This would replace line 23 in 'index.html'. Either way it goes, nice work on this project. It looks awesome!
Marked as helpful0@wilmerandres25Posted 6 months agoSuper @cdanderson76... Thank you for the accessibility recomendation in the img tag. I'll apply it on future front-end projects.
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