Survey Form - Build a Survey Form

Tell us what’s happening:

not able to do this?? Any idea!!
You should have at least one textarea element that is a descendant of #survey-form.

Your code so far

<!-- file: index.html -->

<h1 id="title">Survey form</h1>
<p id="description">This is the test Survey Form</p>
<form id="survey-form">
  <label id="name-label">
 Name
</label>
  <input id="name" type="text" required placeholder="enter your name"></input>
  <label id="email-label">
Email
</label>
  <input id="email" type="email" required placeholder="enter your email"></input>
<label id="number-label">
  Age
</label>
  <input id="number" type="number" min="18" max="40" placeholder="age"></input>
  <select id="dropdown">
    <option>Student</option>
    <option>Faculty</option>
  </select>
  <input type="radio" value="0" name="Yes">
  <input type="radio" value="0" name="No"></input>
  <input type="radio" value="0" name="No"></input>
  </input>
  <input type="radio" value="1" name="No">
  <input type="radio" value="0" name="No"></input>
  </input>
  <input type="radio" value="0" name="No"></input>
  </input>
  <input type="checkbox" value="0" name="No"></input>
  <input type="checkbox" value="1" name="No"
  ></input>
  <input type="textarea"></input>
  <button id="submit" type="submit">Submit</button>
</form>



/* file: styles.css */

Your browser information:

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

Challenge Information:

Survey Form - Build a Survey Form

Hello!
I do not see any textarea elements in your code.
You can read about the textarea element here:

I also recommend that you read through this article, it contains information about the basics of HTML:

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