- HTML
- CSS
QR code component solution
Hello @inkfromblood, congratulation on submitting your first solution🎉👏.
Yes giving the QR code image max-width: 100%
is totally right since this will make the image to take the full width and never overflow it.
I have also some notes for you:
- use
font-family: 'Outfit', sans-serif
globally instead of redeclare every time:
body {
font-family: 'Outfit', sans-serif;
}
-
instead of using
<h2>
heading level for the text you can just use<p>
element since this text is not a heading. This will fix your Accessibility Issues -
use
<footer>
instead of.attribution
div it's more HTML Semantic. Also This will fix your Accessibility Issues -
This challenge Doesn't has nay links so you can Remove styles of the
<a>
tag since it's useless. -
you can see My solution for this challenge it may be helpful for you..!
I hope this wasn't too long for you, hoping also it was useful😍.
Goodbye and have a nice day.
Keep coding🚀