Survey Form - Build a Survey Form

Tell us what’s happening:

i have complete the code how to write the code of inside input tag #name and #email that steps in 8th and 12th step please help me from out of that

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html>
  <head>
     <link rel="stylesheet" href="styles.css">
    </head>
    <body>
      <h1 id="title" > SURVEY FORM </h1>
      <P id="description">this is the survey for toppers. </P>
      <form id="survey-form">
        <label id="name-label" for="name" name="#Name">#name </label>
      <input id="name" type="#name" placeholder="ENTER YOUR NAME" name="#name"></input>
      <br>
      <br>
      <label id="email-label">#email</label>
     <input id="email" type="email"placeholder="ENTER YOUR EMAIL" > </input>
     <br>
     <br>
     <label id="number-label">#number</label>
      <input id="number" type="number" min="5" max="50" placeholder=" AGE"> </input>
    <h5>which option best describe for your current role</h5>
<select id="dropdown">
        <option disabledselectedvalue>select current role </option>
        <option> student</option>
        <option>teacher</option>
        <option>parent</option>
        <option>other</option>
        </select>

        <h5>Do you really wants to know you are a topper ?</h5>
        <input type="radio" value="notsure" name="radio"> yes </input>
        <br>
        <input type="radio" value="notsure" name="radio"> no </input>
        <br>
      <input type="radio"value="notsure" name="radio"> not intrested</input>
      <br>
      <p> I Have keys but no locks, i have space but no room,
        you can enter but you cant come out</p>
        <input type="checkbox" value="value">i know </input>
        <br>
        <input type="checkbox" value="value">i dont know </input>
        <br>
        <br>
        <textarea type="comment">enter your comment on this form.  </textarea>
        <br>
        <br>
        <button id="submit" type="submit" >#submit<button>
      </form>
      </body>
  </html
/* file: styles.css */
h1,p{
  text-align: center;
}
{
  backgroundcolor:skyblue;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36

Challenge Information:

Survey Form - Build a Survey Form

Where in the instructions did it ask you to assign any attribute a value of #name? Also, input elements are void elements that do not require a closing tag.