I am banging my head over these tests I’m failing. I have tried so many different ways to change my labels. I’ve matched both the label id’s and input id’s to the same thing and then I end up failing more tests. I’ve tried copying how other people do their code. I can’t get it right! At this point I know my code is more of a mess, I just have to figure out what I’m doing wrong before I can really clean the formatting up.
Thanks to anyone that has patience to deal with whatever I am probably doing very wrong.
10. For the name, email, and number input fields inside the form I can see corresponding labels that describe the purpose of each field with the following ids: id=“name-label”, id=“email-label”, and id=“number-label”.
14. Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute.
I went through and made sure my labels all said “label for” and did not include an id, and am still getting the error! Going to look it over again but I’m not sure what else I can do here.
That isn’t so messy. It’s actually pretty nice. I really like you firey orange gradient. try to get the form’s colors to match the colors of a pizza a little better.
Also, add some margin between the text and number inputs.
Don’t put text inside the <textArea> tag. give it a placeholder of the text you want inside.
Yeah I think I should change the form color as well.
Do you notice anything wrong with my labels and input? I know label for and input id need to match, but whenever I make id=“name-label” to match label or label for=“name” to match id I fail more tests.