A problem of the Responsive Web Design Projects - Build a Tribute Page

Tell us what’s happening:
I cannot fulfill the requirement of “7. I should see an <a> element with a corresponding id=“tribute-link”, which links to an outside site that contains additional information about the subject of the tribute page. HINT: You must give your element an attribute of target and set it to “_blank” in order for your link to open in a new tab (i.e. target="_blank").”
Is there any problem in my code?

Your code so far

         <a id="tribute-link"
       target="_blank" href""> Click here</a>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36.

Challenge: Build a Tribute Page

Link to the challenge:

Welcome, Karsy.

I have edited your post for readability. In the future, please place all code between backticks `.

Also, it is a lot easier to help you, if you link a CodePen with your code, or paste all necessary code in the post.

To answer you question: You have not told your a tag what you are linking. You have given it an id, you have told it to target a blank browser page, but you have not said what source the tag sends you to.

Hope this helps.

1 Like