Create another radio button - 47

Create another radio button below the first one. Nest it inside a label element with Outdoor as the label text. Give the radio button an id attribute with outdoor as the value

→ I tried to solve it that way, but it didn’t pass, they would know that’s wrong

<label><input id="indoor" type="radio"> Indoor</label>
<label> <button type="radio"id="outdor">Otdoor</button></label>

First, you spelled outdoor wrong… Second, you created a button button, not a radio button… a radio button is an input. Your outdoor one should look very similar to the indoor one above it.

(post deleted by author)

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.