Please provide feedback for Tribute page

Hi fellow campers!

I have just finished my tribute to Kailash Satyarthi and am posting my tribute page for you to see .
Please provide your feedback and opinion about how my page is and how I could improve it

Thank You

1 Like

Visually speaking, it looks good! I have a couple concerns about the code though:

  • You used a lot of space between elements in the HTML, it makes it a bit difficult to quicky grasp the structure of your page.
  • You don’t need to include the body tag in codepen. Also I suggest not to use inline styles, it’s a good habit to use only external CSS. You can accomplish the same thing with this code:
body {
  background-color: white;
}
  • At the end of the HTML you have a </div> closing tag which closes nothing.
  • .addClass("center-block"); looks like jQuery, you can’t put it in CSS.

Thank you @Atomk , I will follow your suggestions