Hello
Onto the second challenge. Here’s my survey form. Would love some feedback.
https://codepen.io/sam-g-code/full/PoZZKzV
Thanks
Sam
Hello
Onto the second challenge. Here’s my survey form. Would love some feedback.
https://codepen.io/sam-g-code/full/PoZZKzV
Thanks
Sam
Thanks @Codemetheus
That’s really useful advise. I’ll definitely use the Contrast Checker in the future.
hi @sam-g-code
great work
edit: sorry i had to delete my post, it was off topic.
Your form looks okay @sam-g-code. Some things to revisit;
body element in HTML. (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.
<br> to force line breaks. That’s what CSS is for.Thanks @Roma
Really useful advise. Hopefully I’ve addressed the problems you identified.
Good job cleaning things up @sam-g-code. You missed one. Line 2 you have;
<div class="header" <header class="header">
notice the div is missing the closing angle bracket?
should be;
<div class="header"> <header class="header">
Got it. Thanks a lot.