Please feel free to criticize my work, i am a noob that will be glad to take any advice from Pros , thank you for your time!
Hey there! Impressive job with the tribute page!
Honestly, I think you did a fantastic job, and the animated picture is a nice touch. I do have some advice that might help you:
- Run CSS and Html through the W3C Code validator, hereâs the link to the Html validator: https://validator.w3.org/#validate_by_input
hereâs the link for CSS http://jigsaw.w3.org/css-validator/#validate_by_input
-
the green background is a bit off putting; I recommend letting the background stay white or pick a new color. I am also terrible at colors so I canât help you pick colors, but I hope this helped.
-
I also recommend implementing a custom font, the default font blends into the green background I recommend looking for a new font in the Google font store. I also realize that you have implemented a custom font so I think you should just change the font.
I hope these tips and insights help!
Best, Cy499_Studios
Your page looks good @bedward. Some things to revisit;
-
Codepen provides the boilerplate for you. It only expects the code youâd put within the
body
element in HTML. (No need to include thebody
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.- The link to the font goes in the box labeled âStuff for <head>â
- Itâs incorrect to put the
link
to the font in the stylesheet. Youlink
to the font in thehead
element of HTML, youimport
the font in the CSS stylesheet. (But as noted, if youâre going tolink
then it goes into the stuff for head box in codepen.)
-
Do not use the
<br>
element to force line breaks or spacing. Thatâs what CSS is for. -
Review the lesson about giving meaningful text to links.
- Web Accessibility in Mind has a more thorough explanation.
- âwikipedia entryâ is not accessible
-
On a side note, you donât have to recreate the FCC projects. Make your own. As the objectives say, the ones you do only have to be âfunctionally similarâ and you should âgive it your own styleâ.
Thank you very much for your advice, very appreciated!
No prob although I do admit that I missed the element problem, sorry about that!
Thank you very much for your thorough investigation of the code, very appreciated! and thanks for the advice and tips.