Radio button lesson not successful

Hello,

I completed the activity with the radio buttons, but when I run the code, it does not take me to the next lesson. I checked the video, it seems my code is correct. Please helo me to get to the next lesson. Thank you. Tessa

Blockquote

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>
  <Input id="Indoor"type="radio"name="Indoor-Outdoor">
  <label for="indoor">Indoor</label>
  <Input id="outdoor"type="radio"name="Indoor-outdoor">
  <lable for=outdoor">Outdoor</label>

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

1 Like
  1. Your radio buttons should be given the name attribute of indoor-outdoor .
  2. Each of your two radio button elements should be nested in its own label element.
  3. Each of your label elements should have a closing tag.
  4. One of your radio buttons should have the label outdoor .
  5. Each of your radio button elements should be added within the form tag.

These are all the error messages that you’re getting. Try going through one at a time.

Note that tags, attributes and their values are case sensitive. So for example there should be input not Input and indoor not Indoor.

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

you have not open label tags

<label>
<input>
</label>