Learn HTML Cat Photo App - Step 48

Help please :slight_smile:

I added the value attributes that match the id, but cannot move forward to the next step.

          <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>
   Your code seems to have extra newlines in it:
          <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>

The original code doesn’t so maybe if you reset the exercise and just add the value attribute only it will work
here’s what the original code looks like

         <label><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
          <label><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label>

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