Which radio group are they talking about

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=" " name="idk man"/></label>
<label>blahblah
 <input type="radio"value=" " 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:

I think the solution is to set the same name to all of your inputs with radio type. That is called grouping.

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