abdullah-mn
@abdullah-mnAll comments
- @bisu22@abdullah-mn
Hi @bisu22,
- you don't have a CSS folder in GitHub. Therefore you can either create a new folder and place your
style.css
file in that folder.
OR
- you can get rid of
css/
path in your link, like this<link rel="stylesheet" href="style.css">
.
and same rule to your
img
element,<img src="image-qr-code.png" alt="QR code">
. always try to add some text toalt=" "
attribute.I think this feedback will helpful, and best wishes for your upcoming challenges.
Marked as helpful - you don't have a CSS folder in GitHub. Therefore you can either create a new folder and place your
- @labisigloria@abdullah-mn
Hi ! you did good, but there are some small changes you can do to make it more good.
-
you don't need media query
@media
in this challenge. Remove the media query. -
And also use flexbox to center the card, and remove the margin properties from body.
-
And always try to use
min-height
property, notheight
.
I thin this comment will helpful. and Good luck to your upcoming challenges.
Marked as helpful -