User Story #6: I should see an element with a corresponding id="tribute-info", which contains textual content describing the subject of the tribute page

after passing this challenge i have gone back to my tribute page to try and make it look more presentable and the problem shown in the title of this message now keeps flagging up. help please?!

please find a link attached below to my pen
https://codepen.io/adamsmith1990/pen/ZgaRaW?editors=1000

You have two ids attributes on the same element (the <a> element) which is causing the test to fail. Also, the <a> element is not really the right place for the #tribute-info anyway. Move the #tribute-info id to your <p> element. Or better yet give both the <h2> and <p> a container element and give it the id.

<article id="tribute-info">
 <h2></h2>
 <p></p>
</article>

You also have a lot of divs that are never closed, you should make sure you closed them.

3 Likes

brilliant! thank you so much!