Help on survey form

it says my name label should contain text that describes it, have done all I can can’t seem to get it right why?
here is my code below.

<!DOCTYPE html>
<html lang="en">
<head>
  <link rel="stylesheet" href="styles.css"> 
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Survey Form</title>
</head>
<body>
  <h1 id="title"> Chaiso Survey </h1>
  <p id="description">This is a survey form for Chaiso </p> 
  <form id="survey-form">
Name<input id="name" type="text" required placeholder="Enter Your Name">
    <label id="name-label"></label>
    </input>
    Email<input id="email" type="email" required placeholder="Enter Your Email">
    <label id="email-label"></label>
    </input>
    Age<input id="number" type="number" min="18" max="60" required placeholder="Enter Your Age">
    State<input id="State" type="text" required placeholder="Enter Your State"<label id='State-label'></label></input>
    <label id="number-label"></label>
<p>What is your favorite feature of freeCodeCamp?</p>
 <select id="dropdown" name="dropdown" class="form-control" required>
  <option disabled selected value> Choose one</option>
  <option value="challenges">Challenges</option>
  <option value="projects">Projects</option>
  <option value="community">Community</option>
 </select>  
    <p>Would you recommend freeCodeCamp to a friend?</p>
    <label>
    <input name="user-recommend" value="definitely"
    type="radio" class="input-radio"checked/>Definitely</label>
    <label>
    <input name="user-recommend"        value="maybe" type="radio" class="input-radio"/>Maybe</label>
    <label>
    <input name="user-recommend"            value="not-sure" type="radio"           class="input-radio"/> Not sure</label>
    <input type="checkbox" value="attribute">new user</input>
    <input type="checkbox" value='attribute'>recurrent user</input>
    <p> would you like to give us feedback</p>
    <textarea>Type your comment here!</textarea>
    <button id="submit" Type="submit">Submit</button>
  </div>
  </form>  
</body>
</html>

@chaisoman
Hello! Can you possibly link the step your on, so we can help you.

1 Like

Welcome back to the forum @chaisoman

The element does not contain any text.

Happy coding

1 Like