@MelvinAguilar
Posted
Hello there π. Good job on completing the challenge !
I have other suggestions about your code that might interest you.
Alt text π·:
- The
alt
attribute should not contain the words "image", "photo", or "picture", because the image tag already conveys that information.
-
The
alt
attribute should explain the purpose of the image. Uppon scanning the QR code, the user will be redirected to the frontendmentor.io website, so a betteralt
attribute would beQR code to frontendmentor.io
If you want to learn more about the
alt
attribute, you can read this article. π.
ARIA π:
-
Aria-labels are not necessary for paragraphs. A paragraphs is a non-interactive element and some screen readers will ignore the aria-label on those elements, they only work on interactive elements such as buttons, links, etc.
The
aria-label
attribute can be used to provide a text description of the element's content, which can be read by screen readers
I hope you find it useful! π Above all, the solution you submitted is great!
Happy coding!
Marked as helpful