CatPhotoApp - Stuck at step 49

<!-- I tried to place the <fieldset> element everywhere I could possible think... still stuck at step 49-->

<fieldset>
<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>

@aliceobarros welcome to the forum please describe your problem

I tried to place element everywhere I could think of and i’m still stuck at step 49

quote your code here, so we can see where you are stuck

@okibe007 @Ken4

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

what is the error message?

You have two fieldset in your code, for the challenge to pass you need just one and the input should be nested within a label on the same line like the illustration below:

<fieldset>
  <label><input type = "" id  = "" name = "">Input text</label>
  <label><input type = "" id  = "" name = "">Input text</label>
</fieldset>

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