Survey Form - Build a Survey Form

*help me pls ı do evrey thing just one step

<!-- file: index.html -->
<DOCTYPE html >
   <html>
      <head>
         <title>form page</title>
         <h1 id="title"> form.com</h1>
      </head>
      <body>
          <p id="description"> what about this form</p>
<form id="survey-form">
<label id="name-label">name;
   <input id="name" type="text" required  placeholder ="write name"/>
</label>
<br>
<label id="email-label">email;
   <input id="email" type="email" required  placeholder ="write email"/>
</laebl>
<br>
<label id="number-label"> number;
   <input id="number" type="number" min="4" max="8" required  placeholder ="write number"/>
</label>
<br>
<label id="referrer">what about my page:
   <select id="dropdown">
<option value="">select</option>
<option value="1">İ like it</option>
<option value="2"> İ dont like it</option>
<option value="4">İ dont have idea </option>
   </select>
   </label>
   <br>
<label for="faydalı">
   <input type="radio" name="faydalı" id="faydalı" value="survey-form" /> faydalı 
   </label>
   <label for="faydalı değil">
      <input type="radio" name="faydalı değil" id="faydalı değil" value="survey-form" />faydalı değil
      </label>
<br>
<label for="İ'm not robot  ">
<input type="checkbox" id="İ'm not robot " value ="survey-form" /> İ'm not robot 
</label>
<br>
<label for="ı accept the terms and conditions ">
<input type="checkbox" id="ı accept the terms and conditions" value="survey-form"/>ı accept the<a href="google.com"> terms and conditions </a>
</label>

<textarea min="100" max="1800" placeholder="write some thing" ></textarea>
 <button id="submit" type="submit " >submit</button>
 </form>
      </body>
   </html>
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/22.0 Chrome/111.0.5563.116 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Hello!

Please tell us what your error message is @asilawad9.b so we will be able to assist you in resolving the problem?

Thank you!

Happy coding! :slight_smile:

Every radio button group should have at least 2 radio buttons this one
Sorry ı forget write

Thank you!
No worries about forgetting. You did it now.

We all forget sometimes. :slight_smile:

The names for the radio buttons should be the same name, so when one is chosen the other cannot be chosen.
You may wish to have the values with the same value as the text.

If you fix the these, it will resolve the problem you are having with the code.

I checked it out before telling you it will resolve the problem.

Happy coding! :slight_smile:

Thank you so much ıts work

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