Issue with Build a Tribute Page challenge

Tell us what’s happening:
So I’ve made a tribute page and 9/10 tests are passing, but I have no idea why the one is failing.

The test which fails is ’ * 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.

I have this description with the correct ID on line 22.

Your code so far


Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 11021.81.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36.

Link to the challenge:

Any help would be greatly appreciated.

Thanks,

Usually in a codepen you don’t include a <head>, <html> or <body> tags in your html editor and the css styles go into your css editor.

By including your title nested in the head tag (and maybe your id=tribute-info on your html tag) I think you confused the testing software.

Try moving those required items to some elements below the <body> tag.

Here is an example

Thanks a lot! That fixed it :smile: