Add a radio button with the option set as:

i have been suck here
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 set as:

Indoor

In the future, you should use the Help button in the step to post questions about the step in here. That way it will automatically include a link to the step and your current code so we can see what you have tried.

Since you have already opened this issue, it’s too late to use the Help button, so please tell us the step number. And then you’ll need to paste your HTML in here so we can see what you have tried.

To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key. You may also be able to use Ctrl+e to automatically give you the triple back ticks while you are typing in the this editor and the cursor is on a line by itself. Alternatively, with the cursor on a line by itself, you can use the </> button above the editor to add the triple back ticks.

Welcome to the community!
This is what you are provided with at the start of this step.
< input type=“text” name=“catphotourl” placeholder=“cat photo URL” required>

This line above the original input, is where the new input element with the type radio should go. Then, the text value of Indoor should be just outside the >

Example:
< input type=“checkbox”> Sheepish

< input type=“text” name=“catphotourl” placeholder=“cat photo URL” required>

I hope this helps.
Happy coding! :slight_smile:

2 Likes

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