Good day,
Finally “finished” my first FreeCodeCamp project! However, it only passed 8 out of the 10 tests. I reviewed the user stories and I think that they are all complete.
Could anyone take a look and see where it has gone awry?
Thanks!
So if you take a look at the first test you’re not passing:
- I should see an 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”).
and then at you’re corresponding anchor element:
<a href="https://en.wikipedia.org/wiki/W._Edwards_Deming" id="tribute-link" class="learn-more" target="blank">Wikipedia Entry</a>
you should be able to see that there’s a (very) small mistake that’s not allowing you to pass the test. Make sure to fix this mistake in your other anchor elements too.
For the second test:
- The
element should responsively resize, relative to the width of its parent element, without exceeding its original size.
Pay attention to the hint it gives in the very next line and you should be able to pass:
Try using the “max-width” style property
By the way, the page looks really good for a first project. I did notice some responsiveness issues, but overall it’s well done.
Thanks for the help! That missing underscore really jumped out at me, in your reply. Also, I will try the “max-width” property.