Tribute page (Sylvester stalloni)- Feedback

hey everyone, here’s my tribute page (https://codepen.io/gpr97-the-encoder/full/ZEWbLeJ) it will be a pleasure if you could give me any suggestion or comments on my project.

Hi, welcome to the forum :slight_smile:

Your page looks good, there are just some small things to revisit:

  • There is a html tag a the end of your code but there is no starting tag. Note that you can omit html tags when using codepen :wink:
  • to define caption for the photo there is <figcaption> element, not <figure-caption>
  • You have a duplicate padding in a #title selector
  • There is no such property as text-align-start in CSS, you probably mean text-align :wink:
  • And the last one, very small detail, just before test suite script you have a number 3, so that it is visible in the top left corner of your page
1 Like

Thank You For The Help @sitek94 :grinning:

Welcome to the forums @gp97. Your page looks good. Some things to revisit;

  • Run your HTML code through the W3C validator.
    • Since copy/paste from codepen you can ignore the first warning and first two errors.
    • There are HTML coding errors you should be aware of and address.
  • Don’t use <br> to force line breaks or spacing. That’s what CSS is for.
    • You’ll see the error because it’s not allowed as a child of the ul element but there are other places you’ve used it that you should use CSS.