Create a Set of Radio Buttons ju75000

Tell us what’s happening:
Hello,
Can you help me for create a set of radio buttons ? I don’t know where is the problem?
Thanks
Best regards

Your code so far


<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <form action="/submit-cat-photo">
    <input id="indoor" type="radio" name="indoor-outdoor">
    <label for="indoor">Indoor</label>
    <input id="outdoor" type="radio" name="indoor-outdoor">
    <label for="outdoor">Outdoor</label>

    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-radio-buttons/

What do the failing tests say?

1 Like

Hello
they says
running tests

Give your radio buttons the name attribute of indoor-outdoor.

Each of your two radio button elements should be nested in its own label element.

// tests completed

Your radio buttons are currently before labels instead of nested in labels.

I think the purpose of this challenge is to read one test then scrutinize the code. Then repeat for each test.
@ArielLeslie Do you agree?
@ilenia That’s Ju75000’s code. Check the linked to challenge.
@ilenia OK, got it. Thanks.

Not really, look at the example code in the challenge description

I know what the linked challenge is

I am telling you that if you look at the example code in the challenge description you can see than you just need to read a tiny bit carefully, it is enough

You don’t need to look at the tests to know what to do, there is just a video that is misleading

ok thanks but can you tell me the answer ?

We will not give you the answer

There is something you don’t understand about what we were trying to explain?

Take a look at the challenge description for an exact example of what you should do