Help i'm stuck in step 46 of the new HTML Project it says "Your new radio button and associated label should be below the first one. "

  <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"> Indoor</label>
          <label><input id="outdoor" type="radio"/> outdoor</label>
          <input type="text" name="catphotourl" placeholder="cat photo URL" required>
          <button type="submit">Submit</button>
        </form>
      </section>
    </main>
  </body>
</html>

What step are you on? Post the link if you can.


Try changing the outdoor label text to start with an uppercase letter.

1 Like

Please post the link to the challenge when asking for help.

Also, please post the question in the post body instead of the post title. It is hard to read questions in post titles and you cannot fit much information into the post title

I’ve answered this one so many times I don’t even need a link :slight_smile:

The label text is not exactly what the instructions asked for. It should be Outdoor (notice the capitalization).

Computers are usually very picky about such things. Always make sure you use the exact text that the instructions ask for.

1 Like

sorry about that he is the link https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-46
well it says that my code has failed because the new radio button and associated label and they should be below the first one

sorry about that he is the link https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-46
well it says that my code has failed because the new radio button and associated label and should be below the first one

Did you fix this issue that @bbsmooth pointed out?

No it sadely didn’t fix it, to give you more details, it asks me to make the second button under the first one, and with the code it’s horizontal

What is your updated code?

should be first letter in word outdoor capitalization Like This Outdoor

Outdoor