Design comparison
SolutionDesign
Solution retrospective
Hello, guys.
This is my first challenge on Frontend mentor. Any feedback or suggestions is appreciated.
Thank you.
Community feedback
- @MelvinAguilarPosted about 1 year ago
Hello there ๐. Good job on completing the challenge !
I have some suggestions about your code that might interest you.
HTML ๐ท๏ธ:
- Instead of using the
<div>
tag to wrap the text, try using the<p>
tag. The<p>
tag represents paragraph-level content, usually text, and is more semantically appropriate for this purpose. e.g.:<p>Scan the QR code to visit Frontend Mentor and take your coding skills to the next level</p>
.
- Wrap the page's whole main content in the
<main>
tag.
CSS ๐จ:
-
Setting the font-size to 62.5% can attract compatibility issues with third-party libraries or plugins. You can read more about this with this lectures:
- 1. Should I change the default HTML font-size to 62.5%?.
- 2. The Surprising Truth About Pixels and Accessibility - The 62.5% trick.
- 3. A comment on the 62.5% trick.
Credit to grace-snow and vanzasetia.
I hope you find it useful! ๐ Above all, the solution you submitted is great!
Happy coding!
Marked as helpful3 - Instead of using the
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