Tribute page feedback, prometheus

https://codepen.io/Joseph_242/pen/wbmpgq Please take a look at my tribute page and any suggestion to improve will be welcomed

Good Start! You may give some attention for padding issue when mobile mode specially. and take care of social icon background color and foreground color.
Happy Coding.

thank you for answering. we’ll work on that

Hi @Prometheus03, it looks good for a first attempt.
Some things you need to revisit;

  • codepen provides you with validators for HTML, CSS and JS. Click on the arrow in the upper right in each section and then click the respective ‘Analyze’ link. There are things you need to clean up in both HTML and CSS.
  • centering all the text makes it hard to read on a wide screen
  • do not use <br> to make paragraphs. If you want multiple paragraphs then make multiple paragraphs with the <p> </p> tags
  • the colors you chose for your link aways are hard to see/read

thank you for your time and your advice. i’ll take the time to make some changes

https://codepen.io/Joseph_242/pen/wbmpgq i corrected a few mistakes and made the footer more responsive but it still flags one error when i analyze my html code

1 Like

@Prometheus03, the reason you’re still seeing that error is because codepen expects to see everything you’d have between the <body> </body> tags. The link element you’re calling for the font is something that would normally appear in the <head>. In order to do that, click on the setting button and put that link in there.
(Hoping I explained that well enough)