My code isnt passing for some reason

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

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
 <head>
   <title>freeCodeCamp Survey Form</title>
 <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">
     <fieldset>
<label id="name-label">Name<input placeholder="name" type="text" id="name" required></label>
<label id="email-label">Email<input placeholder="email" type="email" id="email" required></label>
<label id="number-label">number-label<input placeholder="number" min="10" max="99"type="number" id="number" required></label>
</fieldset>
<select id="dropdown">
 <option>student</option>
<option>bitch</option>
 </select>
<label>idk man<input type="radio"value="1" name="idk man"/></label>
<label>blahblah
 <input type="radio"value="2" name="blahblah"/></label>

 <input type="checkbox" value=" ">
 <input type="checkbox" value=" ">
 <textarea></textarea>
 <input id="submit" type="submit">
   </form>
 </body>
 </head>
</html>
/* file: styles.css */
.form{
 text-align:center;
}
   **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: Build a Survey Form

Link to the challenge:

Hi @eldin5880 ,

You’re still not passing this one single test :

Every radio button group should have at least 2 radio buttons.

Radio buttons of the same group should have the same value for the name attribute.

1 Like

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