Just completed the Personal Portfolio Page task: https://codepen.io/debiday/pen/bGVXyvb
Will appreciate feedback on my code as I know it’s not best practice!
Thank you for your time
Just completed the Personal Portfolio Page task: https://codepen.io/debiday/pen/bGVXyvb
Will appreciate feedback on my code as I know it’s not best practice!
Thank you for your time
Your page looks pretty good to me. The code looks good too (you’re missing a semi colon after the color yellow in your colors selector statement in your CSS, but that’s not a big deal).
Only suggestion I have is possibly making the footer a little thinner and possibly changing the background color of your projects section or the background color of your technical documentations page because it blends into the background.
Your portfolio looks good @Debiday. Some things to revisit;
colors
declaration, all your property: value;
pairs are like this, yellow: #F8FA90
They’re all missing the semicolon after the value
I took a look at one of your projects, the survey form. Don’t use <br>
to force line breaks or spacing. That’s what CSS is for.
You also have at least one duplicate id
in the form. Remember, an id
must be unique within the document. To see what happens, bring up the form so you can see both the radio buttons and the checkboxes. Click on the label “other” in the checkbox section and note that the radio button “other” gets selected, not the checkbox “other”
Thanks for the encouragement That’s a good idea with the background colour
Oh, you are too good with your attention to detail @Roma! I’ve done all the edits now thank you for the encouragement