Stuck Basic HTML and HTML5: Create a Set of Radio Buttons

I must be mind F***** the h*ll out of this but I don’t get what I am doing wrong. I’m seriously stuck on this one called… Basic HTML and HTML5: Create a Set of Radio Buttons

I’m a real NOOB as my 9 year old nephew would say and I am extremely visual. Really have enjoyed it here so far but I just don’t understand what its asking. I’ve read where others have posted but still lost. 3am I guess I need to call it quits for now.

Thanks
Chris

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> 
 </form>
 
 
 <form action="/submit-cat-photo">
  <lable>
    <input type= "radio" name= "indoor-outdoor"> Indoor
    </label>
  <lable>
    <input type= "radio" name= "indoor-outdoor"> Outdoor
    </label>    
    
 
  

  

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15.

Challenge: Create a Set of Radio Buttons

Link to the challenge:

Certainly it’s because of 3am man.
You need to look at what you wrote underneath the form tag, but also remember that is a tag that has to be closed!
It’s normal, don’t worry!

few things:

  • you already have a form element, you don’t need to create a new one, add the new elements inside the already existing one
  • a couple of times you wrote lable instead of label

YEP I was mind f****** it and I need to learn to spell LOL

Thanks, this really is all knew to me, I have been watching and doing python tutorials but I hate giving up on something. I know I need to focus on one and learn to understand it but I couldn’t leave this.