Cant Understand what the site wants me to do. Radio Buttons

I am at the Radio buttons tutorial in freecodecamp. and don’t know what the problem is with my code.

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

</lable>

<p></p>

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

Please Help. its been a week and i haven’t gone afar this thing.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-radio-buttons/

What do you not understand? We can’t see your code at all as well.

I’ve entered the code now its visible. Please help

Alright,

  1. Your <label> is spelt wrongly.
  2. You have an extra <p> in your code, which isn’t needed (Although I doubt it would affect the challenge at all).

Thats all thats wrong :slight_smile:

2 Likes

Thank you brother. I Don’t know how many days i’ve mustered my brain just because of this silly mistake. Really Thanks!!!

No problem, just remember to read and check through your code. :slight_smile:

Remember that even missing a semi-colon can cause you problems!

It happens. I’m from England and even after a year of learning, I still frequently write colour instead of color. Like Keneri says, in the beginning stages just taking a deep breath and checking for typos will normally solve most of your issues. Good luck.