Hello people, I have constructed a very simple music survey form for the FCC project challenge. I thought I have satisfy all the requirements but apparently there is still one that is missing and I couldn’t figure out what is it. It is for Question 14: Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute. I thought I already had it with the Div regarding what genres do you listen to. Here is my code - https://codepen.io/freeCodeCamp/pen/MJjpwO?editors=1100
Hi @bcrh888!
Welcome to the forum!
When I click on the link it is just an empty project. When you fork the pen remember to save the the project to your codepen account.
Sorry about that. I think I have it now. https://codepen.io/bchua/pen/JjRYvxV
Please let me know if this link works? couldn’t figure out what’s wrong with the code
The issue is with your jazz check box. there is a syntax error
Also, do not have css in the html
<style>
* {
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
</style>
Move this to the css section
Thanks so much! Didn’t realize there was a syntax error for the jazz check box. I have fixed it and it worked.
1 Like
I have also moved the the style to css. Thanks for letting me know.