Hey There,
this is my personal portfolio page https://codepen.io/aniket-nakade/pen/bGbYjQx
i am facing an error saying portfolio should have a link with an id of “profile-link”, which opens my GitHub or FCC profile in a new tab.
i’ve tried almost all solutions online even tried changing browsers , tried changing " " to ’ ’ still not able to figure out the issue.
The error is “expected ‘SECTION’ to equal ‘A’”
https://codepen.io/aniket-nakade/pen/bGbYjQx
tried with a single profile-link id at the end , still same issue
very new here please help
Hi,
I’ve opened this link: https://codepen.io/aniket-nakade/pen/bGbYjQx
Here is the part of the code that fails the check:
<a id='profile-link' href="http://forum.freecodecamp.org/u/aniketnakade/summary" target=”_blank”>Codecamp Profile</a>
Here is an explanation from the thrown error:
Clicking #profile-link should cause a link to open in a new tab : expected ‘”_blank”’ to equal ‘_blank’
As far as you can see you’ve used the different double quotes. You used this one ” .... ”
but you have to use this one " ... "
. Do you see the difference now? Try to change the wrong double quotes to the right one and it will work!
Thank you very much , appreciate the help , it worked
You are welcome to ask if you get stuck
1 Like