HTML and Nesting Radio Buttons

Another clear as Mud *lesson on HTML
Text is sparse
???
2 radio buttons
Lost . Write CLEAR text! Clear

This is what I have

Your code so far

CatPhotoApp

Click here to view more cat photos.

A cute orange cat lying on its back.

Things cats love:

  • cat nip
  • laser pointers
  • lasagna

Top 3 things cats hate:

  1. flea treatment
  2. thunder
  3. other cats
Submit <label for="indoor-outdoor" indoor outdoor

<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="https://freecatphotoapp.com/submit-cat-photo">
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
<label for="indoor-outdoor"
<input type="radio"name=“indoor-outdoor”>indoor
<input type="radio"name=“indoor-outdoor”>outdoor
</label>



</main>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

CLEAR as mud

Your page should have two radio button elements.

Your radio buttons should be given the name attribute of indoor-outdoor .

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

Passed

Each of your label elements should have a closing tag.

Passed

One of your radio buttons should have the label indoor .

Passed

One of your radio buttons should have the label outdoor .

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

18

19

20

21

22

23

24

25

26

27

28

29

30

31

freecatphotoapp.com/submit-cat-photo">

<input type=“text”

placeholder=“cat photo URL” required>

Submit</

button>

<label for=“indoor-outdoor”

<input type="radio"name=

“indoor-outdoor”>indoor

<input type="radio"name=

“indoor-outdoor”>outdoor

// running tests Your page should have two radio button elements. Your radio buttons should be given the

name

attribute of

indoor-outdoor

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

label

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

form

tag. // tests completed

Huh??? Can you explain in ENGLISH ??? No? I checked the other examples, and changed my code, not working.

How do you create 2 radio buttons. Text does not explain

Hey, its US stupid New coders who are ADVANCING software, make it clear clear and easy!

In this challenge, you need to add two radio buttons nested inside of labels, like the given sample:

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