Also, in the comment box at the end, I put a placeholder, but it doesn’t show for some reason, unless you click on the comment box and delete all the empty spaces to get to the start of the box. Any help on fixing that?
Congratulations for completing the project and making all the tests pass. I think it would be a lot better if you made the form responsive. I have also noticed you skipping from h1 to h6. Is that valid HTML?
Only 1 question. I took the “br” tags out, but I didn’t know how to make the elements align one under the other, so I wrapped each element around a “p” tag. Is that acceptable? is there a better way?
There are HTML syntax/coding errors you should be aware of and address.
Since copy/paste from codepen you can ignore the first warning and first two errors.
Instead of using <br> elements to have each inline element on a new line, use or set container elements to be block-level elements so they’ll each take up the full width. There are a few ways to accomplish this and wrapping them in a paragraph element is one of them. You could have wrapped them in a div element with a common class name and used CSS. The lessons briefly touched on the fieldset element. You can group the radio buttons and checkboxes and used a display property to align them.
Search and see what’s out there.
Look at other code and play with it and see what happens when you make changes.