I need help with this code

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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">
          <input type="text" name="catphotourl" placeholder="cat photo URL" required>
          <button type="submit">Submit</button>
        </form>
        indoor: <input type="radio">
      </section>
    </main>
  </body>
</html>

*Your mobile information: i need help i am stuck in this stage *

PHJ110 - Android 3 - Android  33

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

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

What are you stuck with in this stage?

I can’t pass this stage

Can you say anything that helps us understand what specifically about this Step has you stuck?


I can’t solve it

Can you try to say something about the specific problem other than “can’t solve it” and “can’t pass” and “am stuck”? All of those could apply to any code in the world.

It really helps if you talk about how you are stuck on this specific Step.

Before the text input, add a radio button…

Do you know where the “text input” is? Do you know what a radio button is?

Welcome to the forum @Muftau

You have the code, however it is in the wrong place and in the wrong order.

  1. It should be placed before the last input element.
  2. The order should be radio button, then the text.

Happy coding

1 Like

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