Learn HTML by Building a Cat Photo App - Step 49

I don’t understand what’s it’s telling me to am a bit confused here.
It says:

Nest the Indoor and Outdoor radio buttons within a fieldset element, and don’t forget to indent the radio buttons.

What does indent the radio button even mean?

  Code
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
    <section>
      <h2>Cat Lists</h2>
      <h3>Things cats love:</h3>
      <ul>
        <li>cat nip</li>
        <li>laser pointers</li>
        <li>lasagna</li>
      </ul>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
        <figcaption>Cats <em>love</em> lasagna.</figcaption>  
      </figure>
      <h3>Top 3 things cats hate:</h3>
      <ol>
        <li>flea treatment</li>
        <li>thunder</li>
        <li>other cats</li>
      </ol>
      <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" name="indoor-outdoor" value="indoor"> <fieldset Indoor</fieldset>
        </label>
        <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> <fieldset Outdoor <fieldset>
        </label>
        <input type="text" name="catphotourl" placeholder="cat photo URL" required>
        <button type="submit">Submit</button>
      </form>
    </section>
  </main>
</body>
</html>

Challenge: Learn HTML by Building a Cat Photo App - Step 49

Link to the challenge:

Hint says: Both radio button and associated labels should be between the opening and closing tags of the fieldset element.
Am lost

Nesting and indentation was covered here

Ok but what does it mean by “indent the radio button” i already have a radio in the type attribute if that’s even worded right but am I meant to create a new radio button look at my code

Use the space bar to move over to the right (indent) the radio buttons

The bigger problem is that you have no fieldset element. Hard to indent inside of the fieldset with no fieldset.

Thank you I know that I use space bar to indent I didn’t know if needed to create a new radio button sorted it out now thank you

you help me, I didn’t understand this step for three days and now I found ur comment and I can do step 50 thank you so much :smiling_face_with_three_hearts:

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