Can't move on the next step

Hi, I’m a beginner, just learning on my own


I was stucking in this situation. Anyone could help me please? I can’t move on the next step.

You should open label tag before the input tag like in the example given

1 Like

The easiest way to create a topic for help is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.


The input element should be nested inside the label element.

Look at the example code.

<label for="indoor">
  <!-- This input is nested inside the label element -->
  <input id="indoor" type="radio" name="indoor-outdoor">Indoor 
</label>
1 Like

Oh great, Tks for your help