Survey Form - Build a Survey Form

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

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <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="name" value="name" /> </label>
   <label id="email-label">     <input id="email" type="email" required placeholder="email" value="email"/> </label>
    <label id="number-label" >number   <input id="number"  type="number"  min="12" max="12" placeholder="number" value="0" />  </label>
    <select id="dropdown">
       <option value="subscrib"><input type="checkbox" name="button" value="button">Subscrib
       <input type="checkbox" name="button" value="button">Subscrib</option>
    <option value="touch" ><input type="radio" name="button" value="button">Touch
    <input type="radio" name="button" value="button">Touch</option>
    </select>
    <button id="submit"/>
     </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/114.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Welcome to our community!

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

I need to do these tasks:
1.You should have at least one textarea element that is a descendant of #survey-form .
2. Your #dropdown should have at least two selectable (not disabled) option elements.

Hi, I’m building the Survey Form and on the beginning when I run the test it was showing me that I have some tasks done correctly and some incorrectly. When I logged in today I have all the tasks incorrect when I run the test, even when I follow the instructions and I think I corrected it properly. I’ve reloaded the page, restarted to computer, checked the code many times, can’t find the mistake, please help

@BabySloth

In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.

Thank you.

You don’t have any ‘textarea’ element found within the ‘form’ element.

I think I need the text area element and where it is supposed to be
And the selectable element on dropdown This is where I am having issues

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