Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.

Hello, I got stuck on 15 point with this error * You should have at least one textarea element that is a descendant of #survey-form.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <link rel="stylesheet" href="styles.css">
 </head>
 <body>

<h1 id="title">freeCodeCamp Survey Form</h1>

<p id="description">Thank you for taking the time to help us improve the platform</p>


<form id="survey-form">
<label id="name-label"> <input id="name" type="text" required placeholder="Enter your name"> Name</label>
 
 <label id="email-label"><input id="email" type="email" required placeholder="Enter your Email">Email</label>
 
 <label id="number-label"><input min="15" max="200" id="number" type="number" placeholder="Age">Age(optional)</label>
 
<label>
 <select id="dropdown">
   <option>Select current role</option>
   <option>Student</option>
   <option>Other</option>
</select>

<p>
 Would you recommend freeCodeCamp to a friend?
</p>

<input value="definitely" name="radio-btn" type="radio">Definitely
<input value="maybe" name="radio-btn" type="radio">Maybe

<p>
 What would you like to see improved? (Check all that apply)
</p>

<input value="Front-end-Projects" type="checkbox"> Front-end Projects

<input value="Back-end-Projects" type="checkbox"> Back-end Projects

<input value="Data-Visualization" type="checkbox"> Data Visualization

<input value="Challenges" type="checkbox"> Challenges

<input value="Open-Source-Community" type="checkbox"> Open Source Community

<input value="Gitter-help-rooms" type="checkbox"> Gitter help rooms

<input value="Videos" type="checkbox"> Videos

<input value="City-Meetups" type="checkbox"> Data City Meetups


<input value="Wiki" type="checkbox"> Wiki

<input value="Forum" type="checkbox"> Forum

<input value="Additional-Courses" type="checkbox"> Additional Courses

<input type="textarea" placeholder="Enter your comment here">


<button id="submit">Submit</button>

</form>
</body>
</html>
/* 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/103.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

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