Stuck on Question 28 of the Create your Own Form

I can’t figure out how to get the placeholders in. I have spent the last hour googling, asked chatgpt, and github copilot, but still nothing is working.

Requirement: 28. Your #name should have a placeholder attribute and value.

<h1 id="title">Trevor's Survey Form</h1>
<p id="description">This form is used to answer questions</p>
<form id="survey-form">
   <input id="name" required></input>
   <input id="email" required type=email></input>
   <input id="number"type=number min=0 max= 90></input >
  <label id="name-label"label="name-label" placeholder = "WHY WONT THIS WORK"> Enter Name 
    </input>
  </label>
   <label id="email-label" >Enter Email<label="email-label"></label>
   <label id="number-label" >Enter Age<label="number-label"></label>
</form>

I figured it out. my issue was I had 2 name tags on it.