Tell us what’s happening:
Describe your issue in detail here.
Hi I’ve test the tribute page and it failed test number 7, regarding the a element with the tribute link
@Radzi, when a test fails click the red button to see which test(s) are failing and text to help you correct the issue. Be sure and read more than just the first line of the failing message. The ability to read and comprehend error messages is a skill you’ll need to acquire as a developer. Ask questions on what you don’t understand.
The failing message says
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 an href attribute
AssertionError: <a> element with id="tribute-link" must contain an href attribute
Do you understand what the test is looking for?
A couple of things;
Remember an id must be unique within the document
Do not include the style tags in the CSS editor. They are HTML tags and would not appear in a stylesheet. Leaving them there will cause problems.
Your page looks good @Radzi. Some things to revisit;
Codepen provides the boilerplate for you. It only expects the code you’d put within the body element in the HTML editor. (No need to include the body tags). For anything you want to add to the <head> element click on the ‘Settings’ button, then HTML and add it into the ‘Stuff for <head>’ box.
Mainly mentioning because you have elements out of order. Everything the browser displays belongs in the body element. Review this for an understanding of the HTML boilerplate tags.
There are HTML syntax/coding errors you should be aware of and address.
Since copy/paste from codepen you can ignore the first warning and first two errors.