-->Create a Set of Radio Buttons need help :)

Tell us what’s happening:

Make sure each of your label elements has a closing tag:
i think i closed the label tag the right way but it’s still now completed

Each of your radio button elements should be added within the form tag:
here i already have it in the form tag :confused:

plz help

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>
    <label>
      <input id="indoor" type="radio" name="indoor-outdoor"> indoor
    </label>

    <label>
     <input id="outdoor" type="radio" name="indoor-outdoor"> outdoor
    </label>
  </form>
  <label
</main>

Your browser information:

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

the challenge is called Basic HTML and HTML5: Create a Set of Radio Buttons
i can’t include links right now sorry

  </form>
  <label
</main>

You have this trailing partial label tag at the end of your code.

haha thats pretty embarrassing but thanks for the first respone and for helping me :slight_smile:

I’m glad I could help. Happy coding.