Submitted almost 3 years ago
Huddle Landing Page project - Final Build
@HarishPRK
Design comparison
SolutionDesign
Solution retrospective
Hi All,
Feedbacks are appreciated for this final build of Huddle Landing Page project
Community feedback
- @skyv26Posted almost 3 years ago
Hi! Harish to solve your accessibility issues. Do below
Change your this code
<div id="heading"> <img src="chatbox-ellipses-outline.svg" alt="chat" width="50px" height="50px"> <h1>Huddle </h1> </div>
TO this
<footer id="heading"> <img src="chatbox-ellipses-outline.svg" alt="chat" width="50px" height="50px"> <h1>Huddle </h1> </footer>
- Your are using attribute width and height in your img tag and you have entered value along with units like this
<img src="chatbox-ellipses-outline.svg" alt="chat" width="50px" height="50px">
never add units with value while working on html attributes So just update your code
<img src="chatbox-ellipses-outline.svg" alt="chat" width="50" height="50">
above mentioned tip will solve your accessibility issues.
Best Wishes
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