Thank you for taking the time to help us improve the platform
Name
Email
Age (optional)
Which option best describe your current role?
Would you recommend freCodeCamp to a friend?
Definitely
Maybe
Not Sure
<label>What is your favorite feature of freeCodeCamp?
<select>
<option value="">Select an Option</option>
<option value="1">Challenges</option>
<option value="2">Projects</option>
<option value="3">Community</option>
<option value="4">Open Source</option>
</select>
<p>
What would you like to see improve? (check all that apply)
Front-end Projects
Back-end Projects
Data Visualition
Challenges
Open Source Community
Gitter Help Rooms
Videos
City Meetups
Wiki
Forums
Additional Courses
Any Comments or Suggestins?
Submit
This challenge is telling me this:
“Every radio button group should have at least 2 radio buttons.”
However, I don’t understand what it’s asking me to do.
Would someone please explain to me what this step wants from me?
Inputs are in the same group when then have the same name attribute. So this is saying that at least two radio buttons need to have the same name attribute value.
name=“definitely-maybe-notsure” for all three (Definitely, Maybe, Not Sure)
<p><input type="radio" id="maybe" name="definitely-maybe-notsure" value="maybe"/> Maybe</p>
<p><input type="radio" id="notsure" name="definitely-maybe-notsure" value="notsure"/> Not Sure</p>`Preformatted text`
type or paste code here