My first webpage ever and i am stuck, can anyone guide me please. What should i do for passing id=“tribute-link” and why i cant get link to open in new tab with target=“blank”
This is the error:
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”).
<a>
element with id=“tribute-link” must contain a target attribute AssertionError:<a>
element with id=“tribute-link” must contain a target attribute
This is the relevant code (spread out for readability):
<a
id="tribute-link"
href="https://en.wikipedia.org/wiki/Bill_Gates"
target:"_blank"
>
I agree with the test that you have not properly set a target
attribute. Examine that line closely and see if you can see the issue. Compare it to the two other attributes you assigned.
When I fix that, your code passes for me.
Thanks for your help
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.