What am i missinggg

Tell us what’s happening:
Describe your issue in detail here.
i don´t know what to do, i already writed the closing tag for “label” but it’s still asking me to write it.

  **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://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <form>
<label>
 <input type="radio" name="indoor-outdoor">Indoor </label>
</form>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <form>
 <label> 
    <input type="radio" name="indoor-outdoor">Outdoor </label> </form>
<li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li> </label>
</ol>
<form action="https://www.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/91.0.4472.114 Safari/537.36

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Hi there,
Add a pair ( 2) of radio buttons to your form

HI @miqueazzs !

I think it would be better to reset your code.

You need to add your radio buttons inside the form they already gave you.
You don’t need to create an extra form.

<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://www.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="https://www.freecatphotoapp.com/submit-cat-photo">
    <input type="text" placeholder="cat photo URL" required>

    ADD RADIO BUTTONS HERE
    <button type="submit">Submit</button>
  </form>
</main>

Hope that helps!

hey! thanks, i did it but it’s still asking me for the closing tag for label

It would help to see your updated code.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

type or paste code here
```<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img src="https://www.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="https://www.freecatphotoapp.com/submit-cat-photo">
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
  </form>
   <form>
     <label for="indoor"> 
  <input id="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>
<label for="indoor"> 
  <input id="indoor" type="radio" name="indoor-outdoor">outdoor 
</label>
</main>

i think it was in the wrong place.
thanks for the help, this is my first day!

I would look closely at what I wrote to you earlier.

But you created an extra opening form tag and placed the radio buttons outside the form.

Once you place them inside the form like I showed then it should pass.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.