Hi! I’m nearly there - but can’t understand why the code isn’t passing this test:
Every radio button group should have at least 2 radio buttons.
The survey shows two radio button questions and they both have at least two selectable buttons.
Thanks in advance
Your code so far
WARNING
The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.
You will need to take an additional step here so the code you wrote presents in an easy to read format.
Please copy/paste all the editor code showing in the challenge from where you just linked.
Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15
<p>Does your child or children attend any of the below:</p>
<label for="institution-nursery-label"><input id="institution-nursery" type="radio" name="institution-nursery-label" class="inline" value="nursery" />Nursery</label>
<label for="institution-childminder-label"><input id="childminder-label" type="radio" name="childminder-label" class="inline" value="childminder" />Childminder</label>
<label for="institution-school-label"><input id="school-label" type="radio" name="School-label" class="inline" value="school" />School</label>
type or paste code here
if the question should be answered with one choice (one radio button), then the two radio buttons should have the same name attribute in order to force the user to select only one of the two.
(does that make sense?)
So the Are you a parent …? question, cannot be answered by selecting both yes and no, so set the name attribute to be a single value for both inputs.