Tell us what’s happening:
I am having trouble completing #user story 8. On line 63 of my code I have attempted to link my GitHub profile page but I do not pass when I run the test . Any help would be greatly appreciated, Thank you!
Your code so far
line 63 of code: <a id=“profile-link” target+"_blank" href=“https://github.com/dgib94”> GitHub
@dgib94, when a test fails you can click on the red button to see which test failed and why. The test runs and tells you what it was looking for.
In this case the failing test says;
My portfolio should have a link with an id of "profile-link", which opens my GitHub or FCC profile in a new tab.
#profile-link should have a target attribute : expected false to equal true
Your target attribute, target+"_blank" is incorrect which causes the test to fail.
Thank you for the information and for the solution. I knew it was a simple typing error i just could not seem to locate it. Now that I know this the rest of my projects should run more smoothly. Thank you again!