<fieldset id="group1">
<legend>What's your favorite season?</legend>
<div>
<input type="radio" id="spring" name="season" value="spring">
<label for="spring">Spring</label>
</div>
<div>
<input type="radio" id="summer" name="season" value="summer">
<label for="summer">Summer</label>
</div>
<div>
<input type="radio" id="fall" name="season" value="fall">
<label for="fall">Fall</label>
</div>
<div>
<input type="radio" id="winter" name="season" value="winter">
<label for="winter">Winter</label>
</div>
</fieldset>
The requirement: “13. Inside the form element, I can select a field from one or more groups of radio buttons. Each group should be grouped using the name attribute.”
Passed all the other requirements except the radio button one. Any help would be very much appreciated
EDIT: RESOLVED. It works randomly after a few refresh…