Hi guys, I’m completely new to this. I have finished the first set of tasks and now I’m in the process of building my Tribute Page, having trouble with task 1 to 5 and also 8 an 9. Not sure where to add and how to add each of these things into the Tribute Page.
I’m using codepen top build the Tribute Page.
My pen is here
Any help would be greatly appreciated, thanks in advance.
Odin.
Keep the test script when forking the pen (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>)
The test script, with all tests passing, should be included when you submit your projects.
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.
Ok, so now I’ve the tests passing but even though I’m now passing the tests, some how my Tribute Info link is bleeding into the first paragraph and the heading of the second paragraph making them all the external link and not the actual text that is in the code. Below is the code I have written for the external link. Any ideas?
<article id="tribute-info">Link to external site for same information and more<a target="_blank" id="tribute-link" href="https://en.wikipedia.org/wiki/Chelsea_F.C."</a>
</article>
Hello Odin, first of all I noticed that you added the <script> test code including the parentheses, now they appear at the top of your page as text… delete those.
And for the broken link you should fix your html by adding a > at the end of the opening tag, and then adding some text to be showed as a link. I would suggest the following code:
<p id="tribute-info">
<a target="_blank" id="tribute-link" href="https://en.wikipedia.org/wiki/Chelsea_F.C.">Link to external site for same information and more</a>.
</p>
As a last advice I would suggest “Analyze HTML” from CodePen utilities in the html tab. That will show you some errors on your html, including the one you’ve got with your link.
I hope this helps to improve your project!