Feedback on Rodger Casement Tribute page

Hi all, finished my first project on FCC. Would love some feedback on this. Also if you want to share yours I’d like to take a peek and see how you did it. Thanks!

http://codepen.io/Conor-Dunne/full/xEXdja/

Hi

HTML:

  • A bug:
    The id ‘timeline’ appears more than once in the document.
 <div id="timeline"> <!-- here (line 26) -->


      <ul id="timeline">  <!-- here (line 29) -->

defines a unique identifier (ID) which must be unique in the whole document.

Cheers and happy coding :slight_smile:

Ah! Thanks very much :slight_smile:

1 Like