Build a Survey Form - Build a Survey Form

Tell us what’s happening:

The last two instructions of this project i have completed however, my code is still not correct

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Survey Form</title>
  </head>

  <body>
    <h1 id="title">Survey Form</h1>
    <p id="description">Thank you for taking the time to help us improve the platform</p>
<form id="survey-form">
  <label for="name-label" id="name-label">Name:</label>
  <input id="name" type="text" placeholder="Enter your name"required />
<label for="email-label" id="email-label">Email:</label>
  <input id="email"type="email"placeholder="Enter your email" required />
  <label for="number-label" id="number-label">Number:</label>
  <input id="number"type="number" min="0" max="100" placeholder="(+27) 00 000 0000"required>


<p> Which option best describes the quality of service received?</p>
<label for="dropdown">Choose an option:</label>
<select id="dropdown">
  <option value="poor">Poor</option>
  <option value="satisfactory">Satisfactory</option>
  <option value="excellent">Excellent</option>
</select>
  

  <p>Was this your first time utilising our services?</p>
  <input type="radio" id="survey-form" name="fix" value="name" />
  <label for="fix">No</label>
  <input type="radio" id="survey-form" name="fix" value="name" />
  <label for="name">Yes</label>

<p>Would you say...please check all that apply below?</p>
<input type="checkbox" value="instagram" />
<label for="instagram">Instagram</label>
<input type="checkbox" value="facebook" />
<label for="facebook">Facebook</label>
<input type="checkbox" value="twitter" />
<label for="twitter">Twitter</label>


<label for="comments"> Comments?</label>
  <textarea cols="30" rows="10" name="comments" id="submit"></textarea>

<button id="submit" type="submit">Submit</button>
</form>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Survey Form - Build a Survey Form

Please look carefully at the value of your id attribute in the textarea element. Can the same id be used more than once in HTML?

Thank you for pointing that out, you’re correct, each id must be unique.