Design comparison
Solution retrospective
Hi,
This is my solution for this challenge. Feel free to leave any feedbacks! It's not the best solution out there but it's best one I can pull off for now.
Happy coding!
Community feedback
- @vanzasetiaPosted over 2 years ago
Hi, Sang Le!
Congratulations on completing this challenge! π
Some suggestions from me.
- Based on the design comparison, the font family for the paragraph element is different from the design. So, I recommend fixing it.
- For the
gallery__heading
, I recommend wrapping it with oneh1
. You can usespan
to break the text into two lines or limit the width withmax-width
. - Each page should only contain one
h1
.h1
is used as a unique identifier for each page so that's why. So for thefooter__heading
, change it toh2
. - Wrap each social media icon with an anchor tag. Those are links to the social media accounts of the company.
- Never use
100vw
on anything as it doesn't account for scrollbars when present. It may only ever introduce potential overflow/scroll bugs. - I highly recommend writing the styling using the mobile-first approach. It often leads to shorter and better performance code. Also, mobile users won't be required to process all of the desktop styles.
That's it! Hope this helps! Happy coding! π
Marked as helpful2@vanzasetiaPosted over 2 years ago@sqle157 Please remove the
art-gallery-website-sketch.zip
. It contains the design file which is against the license ("Re-selling or distributing free or premium challenge design files"). Next time, there's no need to upload the zip files andstarter-files
to the GitHub repository.Also, it's best to keep the
.gitignore
file and upload it to the GitHub repository. It will prevent you from accidentally committing the design file as well. π1@sqle157Posted over 2 years ago@vanzasetia thank you for your feedbacks! Itβs really helpful and informative
0@vanzasetiaPosted over 2 years ago@sqle157 No problem! Don't forget to remove the zip files and the
starter-files
. π0
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