Need Help with the survey project - https://codepen.io/Elemanatore/pen/xxxzdRY

https://codepen.io/Elemanatore/pen/xxxzdRY

I cannot get passed User Story 10.

User Story #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" .

I’ve modified I feel all that I should have but cannot figure this one out. I have added a link to my project.

Thanks

Hi, @Cheat_CoderTriple

You’re making some mistakes here:

<label id:"name-label"  for:"name">name:<input
      id="name"
      type="text"
      name="name"
      placeholder="Enter Your Name" 
      required>  </label> </div>

Remove the colon on the label id and for and replace with equal signal, and remove the “name=name” from the input:

<div class="form-group">
   <label for="name" id="name-label">Name</label>
   <input type="text" id="name" placeholder="Your name here" required>
</div>
1 Like

Jeez.
I was looking at that forever.
-_-

thanks for your help

1 Like