Hi all, can you please give feedback on this first project:
https://codepen.io/cmatthaios/pen/XWNJbJe
Thanks!
Hi all, can you please give feedback on this first project:
https://codepen.io/cmatthaios/pen/XWNJbJe
Thanks!
Welcome to the forums @cmatthaios. Your page looks good. Some things to revisit;
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.
head
element. Codepen is forgiving which is why it works now.Thank you, I believe I made all the corrections. The only errors was because I removed head element causing issues for main element tag
Make sure you hit the save button.
I’m still seeing “wikipedia entry” which is not accessible and the issue I mentioned with the contrast.
As an aside, keep the test script (<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
)
Hi,
Im not sure what to do about the link. I tried to force it to be white, but it still remains that color. Please see the css for that.
Thank you for letting me know about the script code, I have re added that back in.
You do understand that “ wikipedia entry ” is not accessible, right?
You’re over thinking it. Use dev-tools and investigate the link. Only look if you can’t figure it out and if you look and still don’t understand don’t hesitate to ask.
#tribute-link {
color: #ffffff;
}
#tribute-link a:link, #tribute-link a:visited {
color: #ffffff!important;
}
This part of your code is not working because you target an anchor element which is descendant to element with ID tribute link.
#tribute-link a
This would work for the following html
<div id="tribute-link">
<a href="...">link</a>
</div>
If you want to target an element with some id, you do it like this:
a#tribute-link
<a id="tribute-link" href="...">link</a>
In your case though you don’t need all these selectors and, like @Roma has already mentioned, #tribute-link
is all you need.
So does the link now make it more accessible?
Also IDK, I tried that css first, and wasn’t working. Thank you!
Yes it does. Good job