Create a Set of Radio Buttons1234

Tell us what’s happening:

I am very new to all this stuff and want to understand what i am doing 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>

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

What’s the name of the exercise?

Check your spelling on your HTML tags. That is probably triggering the error message.

Basic HTML and HTML5: Create a set of radio buttons

It’s label not lable.

1 Like

It says that something is still wrong lol. I caught the “label” misspelling before you responded.

What does the tests say?