Survey Form - Build a Survey Form

Please assist with this error on my code:
You should have an input or button element with an id of submit .

Your code so far

<!-- file: index.html -->
<h1 id="title">Survey</h1>
<p id="description">Thank you for taking time and complete this survey</p>
<form id="survey-form">survey-form
<fieldset>
  <label for="name">Name <input id="name" type="text" placeholder="Enter-name" required="name" /></label>
  <label for="email">Email <input id="email" type="email" placeholder="Enter-your-email" required="email" /></label>
  <label for="number">Number <input id="number" type="number" min="5" max="13" placeholder="+2700000000"/>
  <select id="dropdown" min:2><option></option><option></option></select>
  <label id="name-label">name</label>
  <label id="email-label">email</labell>
  <label id="number-label">number</label>  
  <input id="radio" type="radio" value="6" name="radio" />
  <input id="radio" type="radio" value="7" name="radio" />
  <input id="checkbox" type="checkbox" value="10" name="checkbox"/>survey-forms
  <input id="checkbox" type="checkbox" value="10" name="checkbox"/>survey-forms
  <textarea>survey-form</texterea>
  <button id="submit" type="submit">survey-form</button>
  </form>
/* file: styles.css */
.name
{
  height: 16;
}

Your browser information:

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

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

not sure if this will help
HTML button form Attribute (w3schools.com)

you may need a value attribute instead

Hi! You may usualy link to the related lesson.

The only thing you need to correct is here

<textarea>survey-form</texterea>
  

Notice how your closing textarea tag is spelled texterea? Fix the spelling and it will pass

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.