Step 51
Next, you are going to add some new form input
elements, so add another fieldset
element directly below the current fieldset
element.
</fieldset>
<fieldset>
</fieldset>
No matter where I put the new fieldset underneath the old one, it is not allowing me to progress further. I have been stuck on this step for days now and it makes me want to quit to be completely honest. free code camp is awful at describing how to accomplish each step correctly.
i don’t know how to link code, I tried copy and pasting it but it is not showing the code, instead it is showing what the code accomplishes. So instead ill just show how my new fieldset is set up.
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
</fieldset>
<fieldset>
</fieldset>
<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button type="submit">Submit</button>```