Learn HTML by Building a Cat Photo App - Step 46

it is really devastating not to have a picture what or a final look of project .
i tried this different way
Nest another radio button with the option Outdoor in a new label element. The new radio button should be placed after the first one. Also, set its id attribute value to:
outdoor

Test

Sorry, your code does not pass. Keep trying.

Hint

Your new radio button and associated label should be below the first one. You have them in the wrong order.

so, kindly what is wrong?

Welcome to the forum.
In order to help you, we need to see your code. Also link to the challenge step would be cool.

Indoor
outdoor

To make your code look like

this

try to edit your post and press ctrl-e. You’ll see what I am talking about

 <label><input id="indoor" type="radio"> Indoor</label>
          <label><input id="outdoor" type="radio">  outdoor</label>
          <input type="text" name="catphotourl" placeholder="cat photo URL" required>

Text and all other parts of code are case-sensitive. Take a look at the task, you need exact same text as one from instructions

yah it worked. it is simple :neutral_face:
thanks, :smiling_face:

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