Review and suggestions on my tribute webpage

Hello @Debbarma2000, Firstly Welcome to the FreeCodeCamp Forums!
Secondly, Good Job on your Tribute webpage, I like it.

Just a tip: if you want your header or banner to start at the very top of the page, use this little trick at the very top of your CSS :

*{
  margin: 0;
}

This usually happens because the browser comes with pre-formatted styles. Therefore using this little snippet code, resets the browser styles before you add your custom CSS to the webpage. Hope you understand. There other ways of doing this. I suggest you look up this post: Should we use CSS Reset?

1 Like