With this project I was able to better understand concepts like the CSS Box Model and also CSS Grid.
What challenges did you encounter, and how did you overcome them?Aligning the social buttons was difficult. I started by using Flexbox on button elements but later decided to use Grid instead. This is where I learned more about the Box Model and CSS Grid, I used tags instead and managed to align the elements using CSS Grid
.socials {
display: grid;
row-gap: 1rem;
width: 100%;
}
These are the following resources that helped me:
-
Grid Layout: CSS Grid Layout Module by w3schools
-
Box Model: CSS Box Model by w3schools and Learn Box Model by web.dev
-
CSS Reset: A (more) Modern CSS Reset on Piccalilli
I am looking to get feedback about the quality of the code that I've written, I tried my best to code while following best practices but maybe I missed something. I'm open to feedbacks for accessibility tips and code quality. Any advice will do! Thank you :)