I submit for fCC community review my first project (Build a Tribute Page). For background, I don’t have a ton of free time on my hands so I tried to fulfill the basic criteria and make it look presentable. I have a bad habit of spending too much time on any one thing and I want to continue moving forward at a decent pace. I would really appreciate feedback on the following areas:
Remove margins and paddings on the edges. Some browsers by default add paddings and margins.
html, body {
padding:0;
margin:0;
}
You also have something going on with padding/margins with your element/s to cause a scrollbar to the right.
Social icons need spaces between them.
Consider increasing size of the text “important moments” because it’s a header.
Consider creating a new line for your social icons on mobile views. It feels crammed in one line.
Building off of what @shimphillip said, you can also use a library like Normalise.CSS. Just go to your pen, and click Settings, and then CSS. Under ‘CSS Base’, click ‘Normalise’. Hope this helps!