I have tried everything and have no clue why this still won’t pass the test. The wording of the feedback is confusing. Please let me know what I need to fix. Thank you! Here’s the link to my pen.
You are supposed to have your content nested inside your label. Ex:
<label name="label-name" id="label-id" for="label-for">Label
<input type="text" id="label-for"></label>
Not this, like you did on every label
Label
<label name="label-name" id="label-id" for="label-for">
<input type="text" id="label-for"></label>
Oh my god, thank you! Passed.