Design comparison
SolutionDesign
Solution retrospective
Feel free to give any feedback!
Community feedback
- @vanzasetiaPosted almost 2 years ago
Hi, Shazee17!
Here are some suggestions for improvements.
- The QR code is the main content of the website. It should have alternative text that describes the purpose of the QR code. As a side note,
<img>
must havealt
attribute. - Replace
<h2>
with<h1>
. Each page should have one<h1>
as the main title of the page. - Use a CSS reset whenever you start a new project. This can help you set the styling foundation easily. My recommendation — A Modern CSS Reset
- Remove
<div>
elements that wrap<img>
, heading tag, and<p>
. Control the width of the children element withpadding
of the parent element. - Fix all the issues that have been reported.
- Make the
<img>
as a block element and setmax-width: 100%
. It makes working with<img>
easier. - Remove
width: 100%;
from the<body>
styling. It's already the default styling.
I hope this helps. Happy coding!
0@Shazee17Posted almost 2 years ago@vanzasetia Thank you for the feedback, i'll work on that!
0 - The QR code is the main content of the website. It should have alternative text that describes the purpose of the QR code. As a side note,
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