Latest solutions
Interactive Card Details Form using CRA, Styled Components and GSAP
#gsap#react#styled-components#animationSubmitted over 2 years agoQR Code Component using CRA and Styled Components
#accessibility#react#styled-components#animationSubmitted over 2 years agoResponsive landing page using Tailwind CSS and Vanilla Javascript
#tailwind-css#accessibilitySubmitted over 3 years ago
Latest comments
- @satish-Maurya-4@darrenbawag
Tested the site. Nicely done. You nailed the styling :) good naming convention for classes/ids 🔥🔥
Just don't forget the report for Accessibility issues and HTML issues.
- provide
alt
tag for images<img class="arrow__icon" src="images/icon-arrow-down.svg" alt="arrow down" />
for screenreaders/accessability reason - I suggest to remove all
#
to all links withhref
and have it urls just like this
<a href="https://facebook.com/"><i class="fa fa-facebook-square"></i></a> <a href="https://www.instagram.com/"><i class="fa fa-instagram"></i></a> <a href="https://twitter.com/"><i class="fa fa-twitter"></i></a> <a href="https://www.pinterest.com/"><i class="fa fa-pinterest"></i></a>
That's it. Happy Coding! 😊
Marked as helpful - provide