I'm stuck and need help

Learn HTML by Building a Cat Photo App (Beta)

Step 43

You can use radio buttons for questions where you want only one answer out of multiple options.

Here is an example of a radio button with the option of cat : <input type="radio"> cat . Remember that input elements are self-closing.

Before the text input, add a radio button with the option Indoor .

      <input type="radio">Indoor
      <input type="text" name="catphotourl" placeholder="cat photo URL" required>

:heavy_multiplication_x: Try again. This might help:

The text Indoor should be located directly to the right of your radio button. Make sure there is a space between the element and the text. You have either omitted the text or have a typo.

I try every typo option with command options like ID, NAME, VALUE etc. and won’t work, I also try with adding line ‘’ also won’t work.

leaving a link for the challenge will make it easier for others to help you.

But anyway, I’ve looked up the challenge and found the issue.

The fail response tells you : “Make sure there is a space between the element and the text.” what that means is that you did not place a space where you should have. after that it shall pass.

2 Likes

Thanks for quick replay!
It solved. :ok_hand:

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