Step 46
Nest another radio button with the option Outdoor in a new label element. The new radio button should be placed after the first one. Also, set its id attribute value to outdoor.
Test
Sorry, your code does not pass. Don't give up.
Hint
Your new radio element should have an id attribute with the value outdoor. You have either omitted the value or have a typo. Remember that attribute values should be surrounded with quotation marks.
Step 46
Nest another radio button with the option Outdoor in a new label element. The new radio button should be placed after the first one. Also, set its id attribute value to outdoor.
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
<figcaption>Cats <strong>hate</strong> other cats.</figcaption>
</figure>
</section>
<section>
<h2>Cat Form</h2>
<form action="https://freecatphotoapp.com/submit-cat-photo">
<label><input id="Indoor" type="radio"> Indoor</label>
<label><input id="outdoor" type="radio"> outdoor</label>
Test
Sorry, your code does not pass. You’re getting there.
Hint
Your new radio button and associated label should be below the first one. You have them in the wrong order.
I’ve replaced part of the code in the solution with this one, changed text outdoor to Outdoor (that is between the tags) and passed. So maybe you have some mistake that is outside this code.