Tell us what’s happening:
I was doing survery form exercise, and somehow, think it was because of the bug, yesterday i had 13 passed tests, while having the same code, today i have 6. How much of the tests i really passed? Can someone help me get rid of bugs so i can pass these challenges.
you have an opening <body> tag on line 4 with no matching closing tag (you can remove this as codepen expect what’s inside the body tags but not the body tags themselves)
you have <div id="main"> on line 5 with no matching closing tag
you have <div id="title-description"> on line 6 with no matching closing tag
you have <div id="main"> on line 87 with no matching closing tag
CSS syntax
line 5: there is a position rule with no value
lines 8-11, #big-text selector is empty
TESTS
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". - there is not a #name-label element, a #email-label element or #number-label element
Inside the form element, I can select several fields from a series of checkboxes, each of which must have a value attribute. - none of your checkboxes have a value attribute
Inside the form element, I am presented with a <textarea> at the end for additional comments.' - there is not a textarea element