All your checkboxes must have a value attribute : expected 6 to equal 0:::but Idk what to put for value? its not passing me for the challenge

  <p class="radio-label">Check all that apply to you</p>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"employed"</input><p class="radio-label">Employed</p></label>
                        <br>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"unemployed"</input><p class="radio-label">Unemployed</p></label>
                        <br>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"givenup"</input><p class="radio-label">Given up</p></label>
                        <br>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"divorced"</input><p class="radio-label">Divorced</p></label>
                        <br>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"happy"</input><p class="radio-label">Happy</p></label>
                        <br>
                        <label style="display:flex; padding-left:15px;"><input id="" type="checkbox" value"sad"</input><p class="radio-label">Sad</p></label>

Please send the link to the lesson, so we know what the problem.
And honestly, that was hard to read your code.

that’s not how you give a value to an attribute

input is self closing, so you should not have the </input> closing tag