I dont see where I'm wrong?

Tell us what’s happening:

Im stuck w labeling the radio tag but I dont see where im wrong

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 type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>

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

</main>

Your browser information:

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

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Hi lglx,

the tests tell you what to do:

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

<label>This means that the inputs should be in here.</label>

(Have a look at the IDs to see which input belongs to which label.)

Each of your radio button elements should be added within the form tag.

<form>Means that the labels/inputs from above should be in here.</form>

Hi @lglx,

There is one thing that catches my eye with your code, and may be the things that is preventing you from getting the A-OK to move on to the next lesson:

In the lesson, they are asking you to wrap the label element around the input element, and in your code it isn’t.

This is what you have:

This is what they’re looking for:

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

Hope it helps!

Merci merci merci merci !!! You’re the best. It worked

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Thank you for understanding.

Hi @Sky020,

Got it! I’m sorry.

Thank you for letting me know.

1 Like