FCC Tribute Page for The Eagles Feedback

Hi everyone!

I have completed a very simple Tribute Page to the Eagles and would love some feedback please.

Many thanks :slight_smile:

Welcome to the forums @tnampahcdigital. 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 coding errors you should address.
    • Actually, they’re typo’s. You close tags out of order. You have;
      <strong><em>Some text</strong></em>
      you close them in the opposite order of opening them so should be;
      <strong><em>Some text</em></strong>
  • Don’t use <br> to force spacing. Use margin and/or padding in CSS.