Here is the link to my project friends.
https://codepen.io/dancanmilgo73/pen/qBWryBo
Feedbacks are most welcome.Thanks.
Hi @ngetich, welcome to the forums. Your page looks good. There are some things you should go back and revisit;
- codepen only expects the code you’d put within the
<body> </body>
tags in HTML. (No need to include the body tags). For anything you want to add to the<head>
click on the ‘Settings’ button and add it into the ‘Stuff for <head>’ box. - codepen provides validators for HTML, CSS and JS. Click on the down arrow in the upper right of each section and then click on the respective ‘Analyze’ link.
- You use an unknown property in CSS
- You use an
id
more than once in HTML.id
's are meant to be used once. If multiple uses are needed for styling, useclass
- keep the test script when forking the pen (
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
). Your page passes 3/17 user stories. - change the cursor to a pointer when hovering over the submit button
- make the labels for your radio buttons clickable too. You’ve done this for the checkboxes.
1 Like
Thanks for the feedback